[Data Structure] Linked List
Linked List
Array vs Linked list
Array: using Python list, easy to access, and hard to insert
Linked List: implementation, hard to access, and easy to insert
Comparison
ArrayLinked List
Searching valueO(1)O(N)
Insertion & DeletionO(N)O(1...
siwonlog.hashnode.dev2 min read