Forward Lists

A forward list is the primitive form of the list structure we studied in the previous lesson. Nevertheless, forward lists are still useful.

We'll cover the following...

std::forward_list is a singly linked list, which needs the header <forward_list>. ...