lintcode 170旋转链表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lintcode 170旋转链表相关的知识,希望对你有一定的参考价值。
描述
给定一个链表,旋转链表,使得每个节点向右移动k个位置,其中k是一个非负数
样例
思路
计算链表个数len,然后先依次向右移动K个位置然后将后K%len个数字移动到前边来
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: /** * @param head: the list * @param k: rotate to the right k places * @return: the list after rotation */ ListNode *rotateRight(ListNode *head, int k) { // write your code here if(head==NULL) return NULL; int len=1; ListNode* p1=head; while(p1->next!=NULL) { len++; p1=p1->next; } k=k%len; if(k==0) return head; int step1=len-k-1; p1=head; while(step1--) p1=p1->next; ListNode* p2=p1->next; ListNode* p3=p2; while(p3->next!=NULL) p3=p3->next; p3->next=head; p1->next=NULL; return p2; } };
以上是关于lintcode 170旋转链表的主要内容,如果未能解决你的问题,请参考以下文章