标签:3.2 class immediate style col node following next media
question:
suppose that x is a linked list node. what does the following code fragment do?
t.next = x.next; x.next = t;
answer:
inserts node t immediately after node x.
标签:3.2 class immediate style col node following next media
原文地址:https://www.cnblogs.com/w-j-c/p/9059929.html