data-structures-and-algorithms

data-structures-and-algorithms

View on GitHub

linked-list-insertions

1) At the front of the linked list 2) After a given node. 3) At the end of the linked list.

BIG O_____

Testing


methods for the Linked List class:

append
----
arguments: new value
adds a new node with the given value to the end of the list
insert before
----
arguments: value, new value
adds a new node with the given new value immediately before the first node that has the value specified
insert after
---
arguments: value, new value
adds a new node with the given new value immediately after the first node that has the value specified

whiteboard proces