lintcode 170旋轉鏈表
阿新 • • 發佈:2017-08-12
while struct images lac nbsp color 計算 span col
描述
給定一個鏈表,旋轉鏈表,使得每個節點向右移動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旋轉鏈表