InterviewSolution
Saved Bookmarks
| 1. |
What is a linked-list? |
|
Answer» A linked-list is a list of data-items connected with links i.e. pointers or references. Most modern high-level programming language does not provide the feature of directly accessing memory location, therefore, linked-list are not supported in them or available in form of inbuilt functions. |
|