参考LinkedList对应的以下PDF(第14页):
很明显,需要在“p”指向的节点之后插入新节点。
http://www.cs.utep.edu/vladik/cs2401.10a/Ch_16_Linked_Lists.pdf
我的问题:
如果我们继续前进到 PDF 的第 16 页,为什么它说插入节点的语句序列非常重要。我的意思是我可以编写如下代码:
p.link = newNode; // writing this part of code first
newNode.link = p.link; //writing this part of code after the above one.
请让我知道以不同的顺序编写这两个语句有什么区别?
谢谢