Codes();
Zoom out : CTRTL -
Zoom in : CTRTL +
Linked List
You can start with appending or prepending.
Insert value in the beginning of Linked List.
prependlist(value)
Insert value in the end of Linked List.
appendlist(value)
Insert value after the node speficied.
insertafterlist(node, value)
Delete value from Linked List.
deletelistnode(value)
Traverse the Linked List.
listtraverse()