次の方法で共有


distance

2 反復子によってアドレス位置の間にインクリメント値の数を判断します。

template<class InputIterator>
   typename iterator_traits<InputIterator>::difference_type
      distance(
         InputIterator _First, 
         InputIterator _Last
      );

パラメーター

  • _First
    2 番目からの距離が決まります最初の反復子。

  • _Last
    までの距離が決まります 2 番目の反復子。

戻り値

_First が増加するまで等しい値 _Lastする回数。

解説

InputIterator がランダム アクセス反復子の条件を満たす場合の関数に定数の複雑さがあります。; は、線形複雑さがあるため、なる可能性があります。

使用例

// iterator_distance.cpp
// compile with: /EHsc
#include <iterator>
#include <list>
#include <iostream>

int main( )
{
   using namespace std;
   int i;

   list<int> L;
   for ( i = -1 ; i < 9 ; ++i ) 
   {
      L.push_back ( 2 * i );
   }
   list <int>::iterator L_Iter, LPOS = L.begin ( );

   cout << "The list L is: ( ";
   for ( L_Iter = L.begin( ) ; L_Iter != L.end( ); L_Iter++ )
      cout << *L_Iter << " ";
   cout << ")." << endl;
   
   cout << "The iterator LPOS initially points to the first element: "
        << *LPOS << "." << endl;

   advance ( LPOS , 7 );
   cout << "LPOS is advanced 7 steps forward to point "
        << " to the eighth element: "
        << *LPOS << "." << endl;

   list<int>::difference_type Ldiff ;
   Ldiff = distance ( L.begin ( ) , LPOS );
   cout << "The distance from L.begin( ) to LPOS is: "
        << Ldiff << "." << endl;
}
  
  
  
  

必要条件

ヘッダー: <iterator>

名前空間: std

参照

関連項目

distance (STL Samples)

標準テンプレート ライブラリ