Leetcode--Swap Nodes in Pairs(0024)
2018-06-17 20:52:45来源:未知 阅读 ()
转载请注明:http://www.cnblogs.com/igoslly/p/8707274.html
来看一下题目:
Given a linked list, swap every two adjacent nodes and return its head. For example, Your algorithm should use only constant space. You may not modify the values in the list, only nodes itself can be changed. |
题目意思: 将每两个相邻的结点互换,不可申请额外空间,对结点本身操作 |
思路:
1、这题考基础的链表结点操作,并没有多大难度,基本操作如下:
2、循环体 p 指向调换的前一个结点,为了避免 head ==NULL 和 链表单结点的情况,设置 ListNode * res ,res->next = head 指针
class Solution { public: ListNode* swapPairs(ListNode* head) { ListNode * res=new ListNode(0); res->next=head; ListNode *p=res; while(1){ if(p->next!=NULL&&p->next->next!=NULL){ ListNode *pre=p,*temp; p=p->next; temp=p->next; p->next=temp->next; temp->next=p; pre->next=temp; }else{ break; } } return res->next; } };
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:最长回文子串
- 【LeetCode】Reverse Nodes in k-Group(k个一组翻转链表) 2018-12-02
- H Diff-prime Pairs 2018-07-27
- xmlDoc.SelectNodes用法(获取不到节点时注意事项) 2018-06-18
- Leetcode: 24. Swap Nodes in Pairs 2018-06-17
- Leetcode: 25. Reverse Nodes in k-Group 2018-06-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash