Iteratory w C++ STL
Warunek wstępny: Wprowadzenie do iteratorów
Iteratory służą do wskazywania adresów pamięci STL pojemniki. Stosowane są przede wszystkim w ciągach liczb, znaków itp. Zmniejszają złożoność i czas wykonania programu.
Operacje iteratorów :-
1. zacznij() :- Ta funkcja służy do zwracania pozycja początkowa pojemnika.
2. koniec() :- Ta funkcja służy do zwracania Po pozycja końcowa pojemnika.
// 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> >gdzie = { 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; }> |
Wyjście:
The vector elements are : 1 2 3 4 5
3. zaliczka() :- Ta funkcja jest używana zwiększyć pozycję iteratora aż do określonej liczby podanej w jej argumentach.
// C++ code to demonstrate the working of> // advance()> #include> #include // for iterators> #include // for vectors> using> namespace> std;> int> main()> {> > vector <> int> >gdzie = { 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;> > }> |
Wyjście:
The position of iterator after advancing is : 4
4. następny() :- Ta funkcja zwraca nowy iterator po którym iterator będzie wskazywał awansowanie na stanowiska wspomniano w jej argumentach.
5. poprzedni() :- Ta funkcja zwraca nowy iterator na który wskazywałby iterator po zmniejszeniu pozycji wspomniano w jej argumentach.
// C++ code to demonstrate the working of> // next() and prev()> #include> #include // for iterators> #include // for vectors> using> namespace> std;> int> main()> {> > vector <> int> >gdzie = { 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;> }> |
Wyjście:
The position of new iterator using next() is : 4 The position of new iterator using prev() is : 3
6. wstaw() :- Ta funkcja jest używana wstaw elementy w dowolnej pozycji w pojemniku. Akceptuje 2 argumenty, kontener i iterator do pozycji, w której elementy mają zostać wstawione .
// C++ code to demonstrate the working of> // inserter()> #include> #include // for iterators> #include // for vectors> using> namespace> std;> int> main()> {> > vector <> int> >gdzie = { 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;> }> |
Wyjście:
The new vector after inserting elements is : 1 2 3 10 20 30 4 5
Rodzaje iteratorów:
- Iteratory wejściowe
- Iteratory wyjściowe
- Iterator do przodu
- Iteratory dwukierunkowe
- Iteratory o dostępie swobodnym