InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between An Array And Linked List? |
|
Answer» An array is an ORDERED fashion of COLLECTION of objects. A LINKED list is a series of objects that are PROCESSED in a sequential ORDER. An array is an ordered fashion of collection of objects. A linked list is a series of objects that are processed in a sequential order. |
|