InterviewSolution
Saved Bookmarks
| 1. |
Are Linked Lists Considered Linear Or Non-linear Data Structure? |
|
Answer» It ACTUALLY depends on where you intend to apply linked lists. If you BASED it on storage, a linked LIST is considered non-linear. On the other HAND, if you based it on ACCESS strategies, then a linked list is considered linear. It actually depends on where you intend to apply linked lists. If you based it on storage, a linked list is considered non-linear. On the other hand, if you based it on access strategies, then a linked list is considered linear. |
|