InterviewSolution
Saved Bookmarks
| 1. |
Which one is true about Linked List data structure when it is compared with array. |
|
Answer» Explanation: To access an element in a LINKED list, we NEED to traverse every element until we REACH the DESIRED element. This will take more time than arrays as arrays provide random access to its elements. |
|