InterviewSolution
Saved Bookmarks
| 1. |
What is linear data structure? |
|
Answer» A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. |
|