We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
结点类代码如下:
public class Node { public Node next; // 存放的数据 public int data; public Node(int data) { this.data = data; } }
补充:要求可以实现该单链表的 CRUD 操作。好了,show us your code😄
CRUD