Leetcode 24. Swap Nodes in Pairs
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 24. Swap Nodes in Pairs相关的知识,希望对你有一定的参考价值。
不定期更新leetcode解题java答案。
采用pick one的方式选择题目。
本题很简单,大致翻译过来的意思是将单链表相邻节点互换节点位置。额外的要求是使用O(1)空间,以及不修改节点值,仅对节点位置修改。意思就是防止使用互换节点值的方式,省去交换节点位置的操作,这种取巧的方法。
思路很简单,进行节点next指针交换即可。直接粘代码:
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ public class Solution { public ListNode swapPairs(ListNode head) { ListNode pre = new ListNode(0); pre.next = head; ListNode node = pre; while(node != null){ ListNode pre_head = node; ListNode now = node.next; if(now == null) break; node = node.next.next; if(node != null){ now.next = node.next; pre_head.next = node; node.next = now; node = now; } } return pre.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