当前位置:   article > 正文

Leetcode-24:两两交换链表中的节点

两两交换链表中的节点

描述:
给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。

示例:

给定 1->2->3->4, 你应该返回 2->1->4->3.

说明:

  • 你的算法只能使用常数的额外空间。
  • 你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。
  1. /**
  2. * Definition for singly-linked list.
  3. * public class ListNode {
  4. * int val;
  5. * ListNode next;
  6. * ListNode(int x) { val = x; }
  7. * }
  8. */
  9. class Solution {
  10. public ListNode swapPairs(ListNode head) {
  11. if(head ==null || head.next==null){
  12. return head;
  13. }
  14. ListNode root = new ListNode(0);
  15. root.next =head;
  16. ListNode pre = root;
  17. while(pre.next!=null && pre.next.next!=null){
  18. ListNode first = pre.next;
  19. ListNode second = pre.next.next;
  20. pre.next = second;
  21. first.next = second.next;
  22. second.next = first;
  23. pre = first;
  24. }
  25. return root.next;
  26. }
  27. }

递归法:

  1. public ListNode swapPairs(ListNode head) {
  2. if(head==null || head.next==null)
  3. return head;
  4. ListNode first = head;
  5. ListNode second = first.next;
  6. ListNode tmp = second.next;
  7. second.next = first;
  8. first.next = swapPairs(tmp);
  9. return second;
  10. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/程序语言诗人/article/detail/61227
推荐阅读
相关标签
  

闽ICP备14008679号