2.3 Implement an algorithm to delete a node in the middle of a singly linked list, given only access to that node.
EXAMPLEInput: the node c from the linked list a->b->c->d->eResult: nothing is returned, but the new linked list looks like a- >b- >d->e
LeetCode上的原题,请参考我之前的博客。