why it is difficult to store linked list as an array?
Answer / codex
Its not difficult if you need to copy items in linked list to an array you should traverse the list starting first element and copy each value you pass by to an array.
if you are asking why do we use a linked list rather than array then it's because an array needs to have a fixed size but in a linked list you can add as much items as you can.but If you really need to use an array you can use an arraylist with resize feature.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a weighted graph?
A lot of data structures related programs related to only trees and graphs, like the diameter of a tree, removing the loops in a graph etc.
What is Doubly link list?
Where is binary tree used?
Can we insert null in set?
What does the term sorting refer to?
List the types of tree.
Which sorting algorithm is used in arrays sort?
What is binary tree and its types?
Explain what are the types of collision resolution techniques and the methods used in each of the type?
Explain the Queue
How do you find the time complexity of a bubble sort?