overview Visualising Linked List Data Structure
operations Insert: Add an element to the list. Delete: Remove an element from the list.
usage
time complexity Insert/ Delete Beginning: O(1)Insert/Delete End: O(n)
Space complexity O(n)