Challenge 2: Search in a Singly Linked List
This lesson explains how searching is accomplished in a singly linked list.
We'll cover the following...
Problem statement
It is time to figure out how to implement another favorite linked list function: Search
.
To search for a specific value in a linked list, you only have one approach; traverse the whole list until you find the desired value.
In that sense, the search operation in linked lists is similar to the ...