leetcode_c++:链表:Rotate List(061)

来源:互联网 发布:网络竞速游戏 编辑:程序博客网 时间:2024/05/16 06:11

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.


算法

O(n)


class Solution {public:    ListNode* rotateRight(ListNode* head, int k) {        if(!head||k<-0)            return head;        //find the length of the list        int len=1;        ListNode* p=head;        while(p->next!=NULL){            p=p->next;            len++;        }        //connect the tail to head        p->next = head;        //find the lefy place(k>len)        k=len-k%len;        //find the place        for(int i=0;i<k;i++)            p=p->next;        //break the list        head = p->next;        p->next=NULL;        return head;    }};
0 0
原创粉丝点击