链表节点值类型为int,给定一个链表中的节点node,但不给定头节点,如何在链表中删除node?
你看看代码就知道 这个思想有多么操蛋了哈哈哈哈
package TT; public class Test112 { public class Node{ public int value; public Node next; public Node(int data){ this.value=data; } public void removeNodeWired(Node node){ if(node ==null){ return; } Node next=node.next; if(next==null){ throw new RuntimeException("hhhhhh"); } node.value=next.value; node.next=next.next; } } }