Swap Nodes in Paris 题解

Posted Lzxgg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swap Nodes in Paris 题解相关的知识,希望对你有一定的参考价值。

Swap Nodes in Paris

思路: 要指定一个空的头节点 将空的头节点的next指定为head

issue1:

指针操作过程中 报错 超时

原因 : 在指针操作时要先顾后边 不能先顾前边

比如 1->2->3->4 调换 2 和 3

先指定 1 后边是 3

别急着指定 3 后边是 2

应该先指定 2 后边是 4

最后指定 3 后边是 2

example:

//假设有三个指针 p0->next = p1; p1->next = p2;
//换的时候要注意
p0->next = p2;
//列举一下错误做法
//我习惯这样
//p2->next = p1;
//这是不对的 要先处理p1
p1->next = p2->next;
p2->next = p1;

 

以上是关于Swap Nodes in Paris 题解的主要内容,如果未能解决你的问题,请参考以下文章

[Leetcode] Swap Nodes in Pairs

LeetCode 24 Swap Nodes in Pairs

24. Swap Nodes in Pairs

LC_24. Swap Nodes in Pairs

Swap Nodes in Pairs

Swap Nodes in Pairs