Java怎么实现成对交换节点

67次阅读
没有评论

共计 883 个字符,预计需要花费 3 分钟才能阅读完成。

本篇内容主要讲解“Java 怎么实现成对交换节点”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让丸趣 TV 小编来带大家学习“Java 怎么实现成对交换节点”吧!

Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1- 2- 3- 4, you should return the list as 2- 1- 4- 3
public class SwapPairs { public static void main(String[] args) { ListNode l1 = new ListNode(1);
 ListNode n1 = new ListNode(3);
 ListNode n2 = new ListNode(4);
 l1.next = n1;
 n1.next = n2;

 SwapPairs sp = new SwapPairs();  ListNode head = sp.swapPairs(l1);  System.out.println(head.val);  System.out.println(head.next.val);  System.out.println(head.next.next.val);  }  ListNode swapPairs(ListNode head)  { if(head == null || head.next == null)  return head;  ListNode first = head;  ListNode last = head.next;  first.next = swapPairs(last.next);// 递归思想   很重要  last.next = first;  return last;  } }

到此,相信大家对“Java 怎么实现成对交换节点”有了更深的了解,不妨来实际操作一番吧!这里是丸趣 TV 网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-08-16发表,共计883字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)