Data Structures Question: Download Data Structures PDF

How can I search for data in a linked list?

Tweet Share WhatsApp

Answer:

Unfortunately, the only way to search a linked list is with a linear search, because the only way a linked list's members can be accessed is sequentially. Sometimes it is quicker to take the data from a linked list and store it in a different data structure so that searches can be more efficient.

Download Data Structures PDF Read All 48 Data Structures Questions
Previous QuestionNext Question
What is the quickest sorting method to use?What is the heap in data structures?