偷天换日,当前节点node
node.value = node.next.value
node.next = node.next.next
其实改变的是node的value和node的next,
即node替node.next存在,那么node,next就消失了