Iteratorji v C++ STL

Predpogoj: Uvod v iteratorje
Iteratorji se uporabljajo za kazanje na pomnilniške naslove STL zabojniki. Uporabljajo se predvsem v zaporedjih številk, znakov itd. Zmanjšajo kompleksnost in čas izvajanja programa.

Delovanje iteratorjev :-

1. začeti() :- Ta funkcija se uporablja za vrnitev začetni položaj posode.

2. konec() :- Ta funkcija se uporablja za vrnitev po končni položaj posode.




// C++ code to demonstrate the working of> // iterator, begin() and end()> #include> #include // for iterators> #include // for vectors> using> namespace> std;> int> main()> {> > vector <> int> >z = {1, 2, 3, 4, 5};> > > // Declaring iterator to a vector> > vector <> int> >::iterator ptr;> > > // Displaying vector elements using begin() and end()> > cout < <> 'The vector elements are : '> ;> > for> (ptr = ar.begin(); ptr cout < < *ptr < < ' '; return 0; }>

Izhod:

 The vector elements are : 1 2 3 4 5 

3. vnaprej () :- Ta funkcija se uporablja za poveča položaj iteratorja do podane številke, navedene v njegovih argumentih.




// C++ code to demonstrate the working of> // advance()> #include> #include // for iterators> #include // for vectors> using> namespace> std;> int> main()> {> > vector <> int> >z = {1, 2, 3, 4, 5};> > > // Declaring iterator to a vector> > vector <> int> >::iterator ptr = ar.begin();> > > // Using advance() to increment iterator position> > // points to 4> > advance(ptr, 3);> > > // Displaying iterator position> > cout < <> 'The position of iterator after advancing is : '> ;> > cout < < *ptr < <> ' '> ;> > > return> 0;> > }>

Izhod:

 The position of iterator after advancing is : 4 

4. naslednji() :- Ta funkcija vrne nov iterator za katerim bi pokazal iterator napredovanje položajev omenjeno v svojih argumentih.

5. prejšnji() :- Ta funkcija vrne nov iterator na katerega bi pokazal iterator po zmanjšanju položajev omenjeno v svojih argumentih.




// C++ code to demonstrate the working of> // next() and prev()> #include> #include // for iterators> #include // for vectors> using> namespace> std;> int> main()> {> > vector <> int> >z = {1, 2, 3, 4, 5};> > > // Declaring iterators to a vector> > vector <> int> >::iterator ptr = ar.begin();> > vector <> int> >::iterator ftr = ar.end();> > > > // Using next() to return new iterator> > // points to 4> > auto> it = next(ptr, 3);> > > // Using prev() to return new iterator> > // points to 3> > auto> it1 = prev(ftr, 3);> > > // Displaying iterator position> > cout < <> 'The position of new iterator using next() is : '> ;> > cout < < *it < <> ' '> ;> > cout < < endl;> > > // Displaying iterator position> > cout < <> 'The position of new iterator using prev() is : '> ;> > cout < < *it1 < <> ' '> ;> > cout < < endl;> > > return> 0;> }>

Izhod:

 The position of new iterator using next() is : 4 The position of new iterator using prev() is : 3 


6. vstavljalec()
:- Ta funkcija se uporablja za vstavite elemente na kateri koli položaj v posodi. Sprejema 2 argumenta, vsebnik in iterator za položaj, kamor je treba vstaviti elemente .




// C++ code to demonstrate the working of> // inserter()> #include> #include // for iterators> #include // for vectors> using> namespace> std;> int> main()> {> > vector <> int> >z = {1, 2, 3, 4, 5};> > vector <> int> >ar1 = {10, 20, 30};> > > // Declaring iterator to a vector> > vector <> int> >::iterator ptr = ar.begin();> > > // Using advance to set position> > advance(ptr, 3);> > > // copying 1 vector elements in other using inserter()> > // inserts ar1 after 3rd position in ar> > copy(ar1.begin(), ar1.end(), inserter(ar,ptr));> > > // Displaying new vector elements> > cout < <> 'The new vector after inserting elements is : '> ;> > for> (> int> &x : ar)> > cout < < x < <> ' '> ;> > > return> 0;> }>

Izhod:

 The new vector after inserting elements is : 1 2 3 10 20 30 4 5 

Vrste iteratorjev:

  1. Iteratorji vnosa
  2. Izhodni iteratorji
  3. Iterator naprej
  4. Dvosmerni iteratorji
  5. Iteratorji z naključnim dostopom