For the questions below, assume that a DoubleNode is a Node with an int info; and DoubleNode previous, next; with DoubleNode head referencing the first item in this list. Assume that the list stores the int values 0, 6, 3, 2, 8 in that order.
Assume that DoubleNode temp references the node with the value 3. Provide code to delete this DoubleNode without disconnecting the rest of the list.