title | date | draft | tags | categories | |||
---|---|---|---|---|---|---|---|
Algorithm4 Java Solution 1.3.22 |
2019-07-04 05:47:10 +0800 |
false |
|
|
Suppose that x is a linked list Node. What does the following code fragment do?
t.next = x.next;
x.next = t;
insert node t
after x