What is a node
An object that always at least holds the value and a pointer pointing to the next node
What is the head
First node
What is the tail
Points to the ending node
~linkedlists()
Deallocates all remaining dynamically allocated memory (all remaninting nodes)
Push front
Inserts a data value at the round end of the list
Pop front
Removes value at the front end of the lift. Does nothing if the list is empty
Why no pop back for singly linked lists
To as our