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

[LeetCode] Rotate List

时间:2015-06-18 15:23:28      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:c++   leetcode   

Rotate List

 

Given a list, rotate the list to the right by k places, where k is non-negative.

For example:
Given 1->2->3->4->5->NULL and k = 2,
return 4->5->1->2->3->NULL.

解题思路:

这道题题意说得不大明白。因此让我NG了好多遍。

这里的k是指右边的节点数目,如题,k指的是4和5。

另外一个题目没有说明白的就是,若k大于链表长度该如何处理。经过多次NG,发现是将k%len。

明白这些,编码就很容易了。面试的时候一定要问清楚面试官。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* rotateRight(ListNode* head, int k) {
        int len = getListLen(head);
        if(k<=0 || len==0){
            return head;
        }
        k = k%len;
        ListNode* myHead = new ListNode(0);
        ListNode* tail = myHead;
        ListNode* p = head;
        for(int i=len-k;i>0;i--){
            tail->next = p;
            tail=tail->next;
            p=p->next;
        }
        tail->next = NULL;
        tail = myHead;
        ListNode* q;
        while(p!=NULL){
            q=p->next;
            p->next = tail->next;
            tail->next=p;
            tail=tail->next;
            p=q;
        }
        head=myHead->next;
        delete myHead;
        return head;
    }
    int getListLen(ListNode* head){
        int len = 0;
        while(head!=NULL){
            head=head->next;
            len++;
        }
        return len;
    }
};


[LeetCode] Rotate List

标签:c++   leetcode   

原文地址:http://blog.csdn.net/kangrydotnet/article/details/46547679

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