×

C++ Forward Iterators

Iterators :

Iterators serve as a link between algorithms and STL containers, allowing the data inside the container to be modified. They let you to iterate through the container, access and assign values, and apply various operators to them in order to get the required outcome.

Forward Iterators :

Both of the input and output iterators are served by forward iterators. As a result, these iterators are called input-output operators. The values may be accessed (input iterator’s functionality) as well as assigned (functionality of output iterators). In one-way iterators, as their name implies, only forward movement is allowed. Additionally, Bidirectional and Random access iterators are valid forward iterators. In C++, the Forward Iterator can be used to read and write to a container, hence it can be claimed that the forward iterator is essentially a mix of the Forward and Random Access iterators. Forward iterators are commonly used to read the contents of a container from the start to end.

The forward iterator uses just the increment operator (++) to traverse all of the items of a container. In C++, a forward iterator is sometimes referred to as a multi-pass iterator.

Operations on Forward Iterators :

The following is a list of operations that are commonly performed on forward iterators :

  • The forward iterator is usually constructible by default.

Expression :

A i;
  • In most cases, the forward iterator can be copied.

Expression :

A i(j);
  • In most cases, the forward iterator can be copied.

Expression :

j = i;
  • In general, an equality or inequality operator can be used to compare the forward iterator.

Expression :

x++;
++x
  • In general, the forward iterator can be increased.

Expression :

x++;
++x
  • In most cases, a forward iterator may be dereferenced as a lvalue.

Expression :

*x=t;
  • In most cases, a forward iterator can be dereferenced to a rvalue.

Expression :

*x;

In the demonstration above, 'A' represents a forward iterator type, i and j represent forward iterator type objects, and t represents an object that has been directed by the iterator type object.

Features of the Forward Iterators :

The following are some of the characteristics of forward iterators:

Equality/Inequality operator :

The forward iterator may be compared simply by utilizing an equality or inequality operator.

Dereferencing :

The forward iterator may be dereferenced for both these values, such as a lvalue and a rvalue, and coders can allocate the value to the output iterator and give a value to it.

Incrementable :

The forward iterator can be incremented, but it can't be decremented.

Example of Forward Iterator in C++ :

#include <iostream>
#include <vector>
using namespace std;
int main()
{	// Declaring a vector vect1
	vector<int> vect1 = { 10, 20, 30, 40, 50 };


	// Declaring the iterator itr1
	vector<int>::iterator itr1;


	for (itr1 = vect1.begin(); itr1 != vect1.end(); ++itr1) {
		// Assigning the values to the locations that are pointed by the iterator
		*itr1 = 10;
	}


	for (itr1 = vect1.begin(); itr1 != vect1.end(); ++itr1) {
		// Accessing the values at the locations that are pointed by the iterator
		cout << (*itr1) << " ";
	}


	return 0;
}

Output :

10 10 10 10 10

Explanation :

In the above example, we declared a vector list called vect1 and an iterator called itr1. Then we assigned the values to the locations that were pointed by the iterator pointer. After that, we accessed the values at the locations that were pointed by the iterator pointer. As we can see, the iterator may be accessed as well as assigned a value, indicating that it is at least a forward iterator which can be any element in the hierarchy.

Drawbacks of Forward Iterator :

The following are the limits that are applicable to the Forward Iterator in general:

  • Relational operator :
    Users can utilize an equality with the forward iterator in most cases, but the constraint is that the other iterators would not be applied to the forward iterator in C++.
  • Arithmetic operator:
    The forward iterator does not support this sort of operator.
  • Decrementable :
    Because the forward iterator only advances forward, it is not feasible to increment it.
  • Random Access :
    The forward iterator can only iterate across the items in a container, therefore random access to an element is not feasible.
  • Unidirectional :
    These iterators are unidirectional, as previously stated. They can only move ahead, that is, they can only be increased. You can't take anything away from them.
  • Offset Dereference Operator ([]) :
    The forward iterators do not support the offset dereference operator ([]). As a result, the offset operator cannot be used to dereference a forward iterator.

Related Topics

Difference between Two Sets in C++

The distinction between the two sets is made up of the components that are present in the first set but absent from the second set. The function consistently duplicates the...

3 minutes read.

C++ Keywords

In this article, we will discuss keywords in C++ with their several features and functions. What are Keywords in C++? In C++, a keyword is a reserved word that has a predefined...

4 minutes read.

Unary Operators in C++

Unary operators in C++ Unary operator: is operations that function to produce a new value on a single operand. a) unary minus: A minus operator modifies the argument's symbol. A positive number...

3 minutes read.

sort() function in C++

This tutorial covers the various built-in sort functions found in the C++ algorithm’s library.  What Does C++ Sort Mean? The concept of sorting in C++ entails rearranging an array's elements in a...

3 minutes read.

Data Hiding in C++

C++ : High-performance apps can be made using the cross-platform language C++. Bjarne Stroustrup created C++ as an addition to the C language. Programmers have extensive control over memory and system...

3 minutes read.

Features of OOPS in C++

What is OOPs? The main reason programmers prefer C ++ language over C is because of the support of object-oriented programing in C++. As the name suggests, object-oriented programming or OOPs...

3 minutes read.

Reserved Keywords in C++

What are reserved keywords in C++? There are a few keywords that cannot be used as identifiers as those words are reserved for some other purposes, such keywords are called reserved...

15 minutes read.

CPP Templates

C++ provides a powerful feature called template, which allows the definition of generic classes and generic functions. Generic programming is a technique where different algorithms work in communion by using...

4 minutes read.

Convex hull Algorithm in C++

The intersection of all convex sets containing a certain subset of a Euclidean space, or alternatively, the set of all convex combinations of points in the subset, defines the convex...

4 minutes read.

Structure Sorting (By Multiple Rules) in C++

To understand the concept of Structure Sorting (By Multiple Rules) in C++, it is recommended to know the Structures concept in the C++ programming language. Here the scenario is pretty...

3 minutes read.

C++ Forward Iterators

Iterators : Iterators serve as a link between algorithms and STL containers, allowing the data inside the container to be modified. They let you to iterate through the container, access and...

3 minutes read.

Initialization of Data Members

In this tutorial, we'll look at how to initialise static member variables in C++. Static members, such as functions or variables, can be added to C++ classes. After declaring the...

1 minute read.

C++ History

C++ is a middle-level programming language developed in 1980s by Bjarne Stroustrup at Bel Labs. C ++ development initially started in 1979, four years before its launch. It is started with...

1 minute read.

rand() and srand() in C / C++

In this tutorial, we'll explore the syntax, usage, and examples of the C++ STL functions rand() and srand(). What exactly is rand()? The C++ STL's built-in rand() function is defined in the...

3 minutes read.

Array of sets in C++

Instead of defining distinct variables for each item, arrays are used to hold numerous values in a single variable. A collection of data objects stored in a continuous way is...

6 minutes read.

C++ Scope of Variables

In this tutorial, we will explore about the scope of variables in c++ programming language. And also, how it works in a program. What is Scope? The range of applications for something...

4 minutes read.

C++ Writing to file

In file handling, write() function is used to write data into the file. The write() uses ofstream or fstream library to write into the file. Syntax file-stream-class   file-stream-object;   file-stream-object.write((char *)&var , sizeof (var)); The write() takes two arguments. The first argument is the address of variable var...

2 minutes read.

C++ Overloading

C++ Overloading is a condition when two or more members have the same name with different parameter type or a different number of parameter. C++ overloading is two types: Function...

1 minute read.

INT_MAX and INT_MIN in C/C++

In competitive programming, assigning a variable that maximum or minimum value a data type can carry is frequently necessary. Still, it might be challenging to recall such a significant, exact...

3 minutes read.

C++ Recursion Function

A programming method called recursion that uses a function to call itself to address lesser problems. The Fibonacci sequence, factorial computation, and tree traversal are just a few of the...

4 minutes read.