Leetcode24. Swap Nodes in Pairs
Posted chason95
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode24. Swap Nodes in Pairs相关的知识,希望对你有一定的参考价值。
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { public ListNode swapPairs(ListNode head) { if(head==null) return null; ListNode dummy = new ListNode(0); dummy.next = head; ListNode p= dummy; while(p.next!=null&&p.next.next!=null) { ListNode temp = p.next; p.next = p.next.next; temp.next = p.next.next; p.next.next = temp; p = temp; } return dummy.next; } }
3ms-4ms 比 递归快1ms。2ms答案类似。可以了。
以上是关于Leetcode24. 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