博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode #24 Swap Nodes in Pairs (M)
阅读量:5221 次
发布时间:2019-06-14

本文共 794 字,大约阅读时间需要 2 分钟。

[Problem]

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.

Your algorithm should use only constant space. You may not modify the values in the list, only nodes itself can be changed.

 

[Analysis]

这题利用递归可以很简洁地解决,只是思考的过程稍微要绕一下。题目要求不能改变list的值,也就是只能在节点的指针上面下手,观察规律,可以发现需要做的是将两个node互换位置,并且将next设置为下一组交换后的两个节点的第一个,由此构成了一个递归的解法。

 

[Solution]

public class Solution {    public ListNode swapPairs(ListNode head) {        if (head == null || head.next == null) {            return head;        }                ListNode node = head.next;                        head.next = swapPairs(head.next.next);        node.next = head;                return node;    }}

 

转载于:https://www.cnblogs.com/zhangqieyi/p/4906091.html

你可能感兴趣的文章
Python中的join()函数的用法
查看>>
Hive教程(1)
查看>>
黑马程序员-指针的初步认识
查看>>
提示未授予用户在此计算机上的请求登录类型
查看>>
Java集合框架学习
查看>>
第16周总结
查看>>
将Cent0S 7的网卡名称eno33改为eth0
查看>>
透明度Opacity多浏览器兼容处理
查看>>
oracle 常用简单命令语句
查看>>
【机器学习_3】常见术语区别
查看>>
Oracle基础 数据库备份和恢复
查看>>
C#编程时应注意的性能处理
查看>>
Java集合--概述
查看>>
1-TwoSum(简单)
查看>>
css box模型content-box 和border-box
查看>>
Fragment
查看>>
比较安全的获取站点更目录
查看>>
php_mvc实现步骤八
查看>>
ThinkPHP中的四种路由形式
查看>>
研究性能测试工具之systemtap入门指南(二)
查看>>