1.

Why deletion in LinkedList is fast than ArrayList?

Answer»

Deletion in linked list is fast because it involves only updating the next pointer in the node before the deleted node and updating the previous pointer in the node after the deleted node.



Discussion

No Comment Found