Lesson 1
Iterators in C++
Lesson Introduction

Welcome to the world of iterators in C++! Iterators are fundamental to the C++ Standard Library, enabling efficient traversal and manipulation of container elements. The goal of this lesson is to help you understand what iterators are, how to use them effectively, and why they are essential.

By the end of this lesson, you'll know how to declare and use iterators to traverse and modify elements in a std::vector.

Basic Concept of Iterators and Types of Iterators

So, what exactly is an iterator? An iterator is an object that lets you access elements in a container (such as std::vector, std::list, etc.) sequentially without exposing the container's underlying representation.

There are several types of iterators in C++:

  • Input Iterators: Read-only access to elements.
  • Output Iterators: Write-only access to elements.
  • Forward Iterators: Read and write access, single-pass.
  • Bidirectional Iterators: Read and write access, and can move both forward and backward.
  • Random-Access Iterators: Read and write access, and can move to any element in constant time.

For this lesson, we will focus on Random-Access Iterators, typically used with std::vector.

Traversing Elements Using an Iterator

To iterate over the elements of a vector, we use the begin() and end() member functions:

  • begin(): Returns an iterator to the first element of the container.
  • end(): Returns an iterator to just past the last element of the container.

An iterator can be incremented, decremented, and dereferenced. Let's break this down:

  • Increment: Moves the iterator to the next element.
  • Decrement: Moves the iterator to the previous element.
  • Dereference: Accesses the value the iterator points to.

Remember, the dereference operator (*) is used to obtain the value that the iterator points to, much like how you dereference pointers.

C++
1#include <iostream> 2#include <vector> 3 4int main() { 5 std::vector<int> numbers = {1, 2, 3, 4, 5}; 6 std::vector<int>::iterator it; 7 8 // Incrementing and dereferencing the iterator 9 it = numbers.begin(); 10 std::cout << *it << std::endl; // Output: 1 11 12 ++it; 13 std::cout << *it << std::endl; // Output: 2 14 15 return 0; 16}

In this snippet, we initialize it to the beginning of the vector and increment it to access the second element. Note that:

  • the iterator has type <data type>::iterator
  • we dereference the iterator with *, like a pointer.
Example of Traversing an Array with Iterator

Now, let's use an iterator to traverse the entire std::vector and print each element:

C++
1#include <iostream> 2#include <vector> 3 4int main() { 5 std::vector<int> numbers = {1, 2, 3, 4, 5}; 6 std::vector<int>::iterator it; 7 8 std::cout << "Elements in the vector: "; 9 for (it = numbers.begin(); it != numbers.end(); ++it) { 10 std::cout << *it << " "; 11 } 12 std::cout << std::endl; // Output: Elements in the vector: 1 2 3 4 5 13 14 return 0; 15}

In this code, we use a for loop with the iterator to traverse the vector from begin() to end(), printing each element.

  • The iterator starts with numbers.begin(), which is the first element;
  • The iterator is incremented on each iteration, moving to the next element;
  • The loop stops once the iterator reaches the numbers.end().
Example of Modifying an Array with Iterators

Let's take it a step further by modifying the elements in the vector using an iterator:

C++
1#include <iostream> 2#include <vector> 3 4int main() { 5 std::vector<int> numbers = {1, 2, 3, 4, 5}; 6 std::vector<int>::iterator it; 7 8 // Modifying elements through the iterator 9 for (it = numbers.begin(); it != numbers.end(); ++it) { 10 *it *= 2; // Doubling each element 11 } 12 13 // Displaying the modified vector elements 14 std::cout << "Modified elements in the vector: "; 15 for (it = numbers.begin(); it != numbers.end(); ++it) { 16 std::cout << *it << " "; 17 } 18 std::cout << std::endl; // Output: Modified elements in the vector: 2 4 6 8 10 19 20 return 0; 21}

In this example, we traverse the vector with the iterator, multiply each element by 2, and then print the modified elements.

Reverse Iterators

In addition to forward iterators, C++ provides reverse iterators, which allow traversal of the container in reverse order. rbegin() and rend() are member functions that return reverse iterators.

  • rbegin(): Returns a reverse iterator to the last element of the container.
  • rend(): Returns a reverse iterator to just before the first element of the container.

Here's an example of how to use reverse iterators:

C++
1#include <iostream> 2#include <vector> 3 4int main() { 5 std::vector<int> numbers = {1, 2, 3, 4, 5}; 6 std::vector<int>::reverse_iterator rit; 7 8 std::cout << "Elements in reverse order: "; 9 for (rit = numbers.rbegin(); rit != numbers.rend(); ++rit) { 10 std::cout << *rit << " "; 11 } 12 std::cout << std::endl; // Output: Elements in reverse order: 5 4 3 2 1 13 14 return 0; 15}

In this code, we use a reverse iterator to traverse the vector from the last element to just before the first element, printing each element in reverse order.

Summary
  • Iterators: Objects that allow sequential access to container elements.
  • Types: Various types cater to different needs, with random-access iterators being the most flexible.
  • Functions: begin() and end() mark the start and end of container traversal, while rbegin() and rend() do the same for reverse traversal.
  • Operations: Increment, decrement, and dereference are key operations for iterators.

Now that you've learned about iterators, it's time to get hands-on! You'll practice creating vectors, using iterators to traverse them, and modifying elements using iterators. This practice will solidify your understanding and prepare you for more advanced topics. Happy coding!

Enjoy this lesson? Now it's time to practice with Cosmo!
Practice is how you turn knowledge into actual skills.