Explain how the following two data structures work, and their pros and cons. 1) Hash table 2) Linked List (Unordered) bonus question (ugh): Why would you ever use a Unordered Linked List for storage of items?
Sigiloso
Hash table: O(1) access, insert Linked List:O(n) access, O(1) insert