java实现单链表。class Node{int data;Node next;} 希望操作步骤和c链表一样
答案:2 悬赏:80 手机版
解决时间 2021-03-05 08:02
- 提问者网友:杀生予夺
- 2021-03-04 18:02
java实现单链表。class Node{int data;Node next;} 希望操作步骤和c链表一样
最佳答案
- 五星知识达人网友:你哪知我潦倒为你
- 2021-03-04 18:46
Node one = new Node();
Node two= new Node();
Node three= new Node();
one.data=1;
two.data=2;
three.data=3;
one.next=two;
two.next=three;
就这样 很简单
Node two= new Node();
Node three= new Node();
one.data=1;
two.data=2;
three.data=3;
one.next=two;
two.next=three;
就这样 很简单
全部回答
- 1楼网友:鱼芗
- 2021-03-04 19:22
Node x= new Node();
x.next = i.next;
i.next = x;
这样就把x插进链表里啦。
x.next = i.next;
i.next = x;
这样就把x插进链表里啦。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯