【一天一道LeetCode】#24. Swap Nodes in Pairs
一天一道LeetCode系列
(一)题目
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.
(二)解题
给定一个链表,交换相邻两个节点,这道题要特别注意越界问题。
评级easy的题!就不多废话了。
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* swapPairs(ListNode* head) {
        if(head == NULL) return NULL;
        ListNode* p = head;
        ListNode* pnext = head->next;
        while(p!=NULL&&pnext!=NULL)
        {
            int tmp = pnext->val;
            pnext->val = p->val;
            p->val = tmp;
            if(pnext->next !=NULL) p = pnext->next; //考虑越界问题,如[1,2,3,4]
            else p=NULL;
            if(p!= NULL && p->next != NULL) pnext = p->next;//考虑越界问题,如[1,2,3,4,5]
            else pnext=NULL;
        }
        return head;
    }
};【一天一道LeetCode】#24. Swap Nodes in Pairs的更多相关文章
- leetCode 24. Swap Nodes in Pairs (双数交换节点) 解题思路和方法
		Swap Nodes in Pairs Given a linked list, swap every two adjacent nodes and return its head. For exa ... 
- [LeetCode] 24. Swap Nodes in Pairs ☆☆☆(链表,相邻两节点交换)
		Swap Nodes in Pairs 描述 给定一个链表,两两交换其中相邻的节点,并返回交换后的链表. 示例: 给定 1->2->3->4, 你应该返回 2->1->4 ... 
- [LeetCode] 24. Swap Nodes in Pairs 成对交换节点
		Given a linked list, swap every two adjacent nodes and return its head. You may not modify the value ... 
- Java [leetcode 24]Swap Nodes in Pairs
		题目描述: Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1-& ... 
- Leetcode 24——Swap Nodes in Pairs
		Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2-& ... 
- LeetCode 24. Swap Nodes in Pairs 成对交换节点 C++/Java
		Given a linked list, swap every two adjacent nodes and return its head. You may not modify the value ... 
- (链表 递归) leetcode 24. Swap Nodes in Pairs
		Given a linked list, swap every two adjacent nodes and return its head. You may not modify the value ... 
- [leetcode]24. Swap Nodes in Pairs交换节点对
		Given a linked list, swap every two adjacent nodes and return its head. You may not modify the value ... 
- LeetCode 24 Swap Nodes in Pairs (交换相邻节点)
		题目链接: https://leetcode.com/problems/swap-nodes-in-pairs/?tab=Description Problem: 交换相邻的两个节点 如上 ... 
- [LeetCode] 24. Swap Nodes in Pairs ☆
		Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2-& ... 
随机推荐
- 微信小程序基础之在微信上显示和体验小程序?
			随着小程序正式上线,用户现在可以通过二维码.搜索等方式体验到开发者们开发的小程序了. 用户只要将微信更新至最新版本,体验过小程序后,便可在发现页面看到小程序TAB,但微信并不会通过这个地方向用户推荐小 ... 
- DrawerLayout案例
			布局文件: <?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget ... 
- 自定义下拉刷新上拉加载View
			MainActivity.java package com.heima52.pullrefresh; import java.util.ArrayList; import com.heima52.pu ... 
- 自定义View总结2
			自定义控件: 1.组合控件:将系统原生控件组合起来,加上动画效果,形成一种特殊的UI效果 2.纯粹自定义控件:继承自系统的View,自己去实现view效果 优酷菜单: 1.系统原生的旋转和位置动画并没 ... 
- Dynamics CRM2016 关闭错误报告弹框提示
			在之前的版本中错误报告的弹框提示是可以在隐私首选项中设置关闭的,如下图所示 但是在2016中这个设置没了 有人说在右上角的选项中设置,但那个只能是设置个人的无法修改系统级别的.在系统中找了半天还是没有 ... 
- oracle11实战详解
			因为最近可以学习oracle了,所以昨天把oracle装好了,装的时候因为种种不知名的原因,把我的mysql居然连连不上了.说实话如果自己看教程安装的话还是有一点小复杂的,特别是对于我这种学渣来说,我 ... 
- Android自动打包工具aapt详解
			概念 在Android.mk中有LOCAL_AAPT_FLAGS配置项,在gradle中也有aaptOptions,那么aapt到底是干什么的呢? aapt即Android Asset Packagi ... 
- 用premake5创建lua532工程
			用premake5创建lua532工程 (金庆的专栏) lua-5.3.2只有Makefile,根据readme.html中"Building Lua on other systems&qu ... 
- Apache shiro集群实现 (七)分布式集群系统下---cache共享
			Apache shiro集群实现 (一) shiro入门介绍 Apache shiro集群实现 (二) shiro 的INI配置 Apache shiro集群实现 (三)shiro身份认证(Shiro ... 
- Node.js 撸第一个Web应用
			使用Node.js 创建Web 应用与使用PHP/Java 语言创建Web应用略有不同. 使用PHP/Java 来编写后台代码时,需要Apache 或者 Nginx 的HTTP 服务器,而接受请求和提 ... 
