博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
24. Swap Nodes in Pairs
阅读量:6695 次
发布时间:2019-06-25

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

Given a linked list, swap every two adjacent nodes and return its head.

You may not modify the values in the list's nodes, only nodes itself may be changed.

Example:

Given 1->2->3->4, you should return the list as 2->1->4->3.

难度: medium

题目:

给定链表,交换相邻的两个结点并返回其头结点。
不可以修改结点的值,只可以改变结点本身。

思路:加个头结点简化操作。然后就是简单的链表置换。

Runtime: 2 ms, faster than 99.98% of Java online submissions for Swap Nodes in Pairs.

Memory Usage: 26 MB, less than 6.66% of Java online submissions for 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) {        ListNode dummyHead = new ListNode(0);        dummyHead.next = head;        ListNode prev = dummyHead;        ListNode next = prev.next;        while (next != null) {            ListNode nextNext = next.next;            if (nextNext != null) {                prev.next = nextNext;                next.next = nextNext.next;                nextNext.next = next;            }            prev = next;            next = prev.next;        }                return dummyHead.next;    }}

转载地址:http://kqvoo.baihongyu.com/

你可能感兴趣的文章
什么是FSO
查看>>
Python 3
查看>>
实现主从关系Form中汇总行金额/数量
查看>>
Python学习笔记:协程
查看>>
原生js完成拼图小游戏
查看>>
[WP7]关于退出时确认对话框的实现
查看>>
Centos硬件信息
查看>>
如何在一个Activity里使用另一个xml布局文件
查看>>
饼图图例中显示百分比值
查看>>
forward和redirect
查看>>
打开hibernate文件报警告
查看>>
linux安装IDEA 2017
查看>>
Intellij IDEA 去掉Mapper文件中的背景
查看>>
Docker 安装 mysql
查看>>
阅读笔记《全景探秘游戏设计艺术》
查看>>
C# Json格式字符串
查看>>
sign-up 签约注册
查看>>
基于RDD实现简单的WordCount程序
查看>>
java8的新特性,Collections.sort(排序的List集合)的使用,对list封装Map里面的某个值进行排序...
查看>>
扩展Ubuntu的系统大小
查看>>