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

[leedcode 61] Rotate List

时间:2015-07-13 15:52:28      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:

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.

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode rotateRight(ListNode head, int k) {
        //本题极易出错!!
        //本题有个隐含条件,当k值大于list的长度时,需要取模,并根据结果进行翻转,所以一定要先求出链表的长度
        //本题两种解法:
        //解法一:求出链表长度后,更新k,然后利用双指针,一快一慢,找到要分割的点,将链表一分为二。
        //注意一个问题,新求出的k如果等于0,代表不需要翻转,直接返回即可
        //解法二:在求链表长度时,只需遍历到尾节点,并将尾节点和头结点相连,
        //剩下的任务只需要一个指针,找到分割的节点,将节点的next置位null,返回节点的原next即可
        /*解法一:
        if(head==null||k==0) return head;
        int len=0;
        ListNode temp=head;
        while(temp!=null){
            temp=temp.next;
            len++;
        }
  
        int dis=k%len;
        if(dis==0) return head;/////
        ListNode fast=head;
        ListNode slow=head;
        temp=head;
        while(dis>0){
            fast=fast.next;
            dis--;
        }
        while(fast.next!=null){
            fast=fast.next;
            slow=slow.next;
        }
        temp=slow.next;
        slow.next=null;
        fast.next=head;
        return temp;*/
        if(head==null||k==0) return head;
        int len=1;
        ListNode temp=head;
        while(temp.next!=null){
            len++;
            temp=temp.next;
        }
        temp.next=head;
        int dis=len-k%len;
        while(dis>0){
            temp=temp.next;
            dis--;
        }
        head=temp.next;
        temp.next=null;
        return head;
        
    }
}

 

[leedcode 61] Rotate List

标签:

原文地址:http://www.cnblogs.com/qiaomu/p/4642773.html

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