码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode ---- Swap Nodes in Pairs

时间:2014-05-23 10:43:49      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   blog   c   code   

题目链接

题意:给出单链表头指针,要求交换链表中每一对相邻的结点.

注意:不可以改变链表中结点的值,只可以使用常量空间.

 

附上代码:

bubuko.com,布布扣
 1 /**
 2  * Definition for singly-linked list.
 3  * struct ListNode {
 4  *     int val;
 5  *     ListNode *next;
 6  *     ListNode(int x) : val(x), next(NULL) {}
 7  * };
 8  */
 9 class Solution {
10 public:
11     ListNode *swapPairs(ListNode *head) {
12         if (head == NULL || head->next == NULL) {
13             return head;
14         }
15         ListNode *p = head, *q = head->next, *pre = head;
16         while (q != NULL) {
17             p->next = q->next;
18             q->next = p;
19             if (pre == head) {
20                 head = q;
21             } else {
22                 pre->next = q;
23             }
24             swap(q, p);
25             pre = q;
26             p = q->next;
27             if (p == NULL) {
28                 break;
29             } 
30             q = q->next->next;
31         }
32         
33         return head;
34     }
35 };
bubuko.com,布布扣

 

Leetcode ---- Swap Nodes in Pairs,布布扣,bubuko.com

Leetcode ---- Swap Nodes in Pairs

标签:des   style   class   blog   c   code   

原文地址:http://www.cnblogs.com/Stomach-ache/p/3737429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!