Delete Node in the Middle of Singly Linked List
Problem
Implement an algorithm to delete a node in the middle of a singly linked list, given only access to that node.
Example
Given 1->2->3->4
, and node 3
. return 1->2->4
Implement an algorithm to delete a node in the middle of a singly linked list, given only access to that node.
Given 1->2->3->4
, and node 3
. return 1->2->4