distance
Určuje počet kroků mezi polohami řešenými dvěma iterátory.
template<class InputIterator>
typename iterator_traits<InputIterator>::difference_type
distance(
InputIterator _First,
InputIterator _Last
);
Parametry
_First
První iterace, jehož vzdálenost od druhého, je třeba stanovit._Last
Druhý iterátor, jehož vzdálenost od první má být stanovena.
Vrácená hodnota
Počet opakování, který _First musí být zvýšena dokud rovné _Last.
Poznámky
Funkce vzdálenosti má konstantní složitost při InputIterator splňuje požadavky pro random access iterační; v opačném případě má lineární složitost a tak je potenciálně nákladné.
Příklad
// 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;
}
Požadavky
Hlavička: <iterátor>
Obor názvů: std