Question: In a doubly linked list, how do you delete a node given only a pointer to that node?
Options:
Correct Answer: Set next and previous pointers
Solution:
In a doubly linked list, you can delete a node by adjusting the next and previous pointers of the adjacent nodes.