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

[Leetcode]Reverse Linked List II

时间:2016-02-18 13:54:01      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

//将list存入vector。然后翻转中间部分数列
class Solution {
public:
    ListNode* reverseBetween(ListNode* head, int m, int n) {
        vector<ListNode*> node;
        ListNode* cur = head;
        for(int i=0;i<m-1;i++)
        cur=cur->next;
        for(int i=0;i<=n-m;i++)
        {
            node.push_back(cur);
            cur=cur->next;
        }
        for(int i=0;i<(n-m+1)/2;i++)
        swap(node[i]->val,node[node.size()-i-1]->val);
        return head;
    }
};

[Leetcode]Reverse Linked List II

标签:

原文地址:http://www.cnblogs.com/lcchuguo/p/5197825.html

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