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

LeetCode Swap Nodes in Pairs

时间:2014-06-05 12:55:24      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:des   c   style   class   blog   code   

bubuko.com,布布扣
class Solution {
public:
    ListNode *swapPairs(ListNode *head) {
        ListNode *a = NULL;
        ListNode *b = NULL;
        ListNode *tail = NULL;
        ListNode *nhead = NULL;
        a = head;
        while (a != NULL && (b = a->next) != NULL) {
            a->next = b->next;
            b->next = a;
            if (tail != NULL) {
                tail->next = b;
            } else {
                nhead = b;
            }
            tail = a;
            a = a->next;
        }
        if (nhead == NULL) {
            nhead = head;
        }
        return nhead;
    }
};
bubuko.com,布布扣

准备六级,水一发

LeetCode Swap Nodes in Pairs,布布扣,bubuko.com

LeetCode Swap Nodes in Pairs

标签:des   c   style   class   blog   code   

原文地址:http://www.cnblogs.com/lailailai/p/3766541.html

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