Linked List

Work In Progress

Singly Linked List

Node: every node has 2 parts data and pointer to the next node

{data}{pointer to next node}

Last Node:  {Data}{ None}- None To indicate last node

root node : pointer to the beginning of the list

size

operations

Example question

question generate a map



Doubly Linked List

Example Question:

question generate a map

advantages( over regular linked list)