Day 17 Recap Questions
- How do you implement add_front on a linked list?
- How do you modify a singly linked list to create a doubly linked list?
- How do you make a copy of a singly linked list?
- Why does add_after takes a
Node *
as input, but add_front takesNode **
? - What cases should be handled when implementing remove_front?