LeetCode 24 Swap Nodes in Pairs
Posted sansamh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 24 Swap Nodes in Pairs相关的知识,希望对你有一定的参考价值。
public class SwapNodesInPairs {
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class ListNode {
int val;
ListNode next;
ListNode(int x) {
val = x;
}
;
}
class Solution {
public ListNode swapPairs(ListNode head) {
if (head == null || head.next == null) {
return head;
}
//当前节点
ListNode p = head;
//next节点
ListNode q = head.next;
//before节点
ListNode r = null;
head = q;
while (p != null && q != null) {
p.next = q.next;
q.next = p;
if (r != null) {
r.next = q;
}
//更新
r = p;
p = p.next;
if (p != null) {
q = p.next;
}
}
return head;
}
}
}
递归版本
class Solution {
public ListNode swapPairs(ListNode head) {
if(head == null){
return null;
}
if(head.next == null){
return head;
}
ListNode next = head.next;
//交换后的头结点的下一个节点是 下一对节点的尾节点
head.next = swapPairs(next.next);
next.next = head;
return next;
}
}
以上是关于LeetCode 24 Swap Nodes in Pairs的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode-24 Swap Nodes in Pairs
LeetCode 24 Swap Nodes in Pairs
Leetcode24. Swap Nodes in Pairs
Leetcode24. Swap Nodes in Pairs