当前位置:   article > 正文

61.旋转链表

61.旋转链表

在这里插入图片描述

struct ListNode* rotateRight(struct ListNode* head, int k){
struct ListNode* fast=head,*slow=head,*temp=head;
    if(!head) return head;
    int count=1;
    while(temp->next)
    {
        temp=temp->next;
        count++;
    }
    k%=count;
    if(k==0) return head;
    k++;
    while(k--) fast=fast->next;
    while(fast)
    {
        fast=fast->next;
        slow=slow->next;
    }
struct ListNode* Head=slow->next;
    slow->next=NULL;
    temp->next=head;
return Head;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

在这里插入图片描述
思路:将旋转问题转化为将链表倒数k个节点作为链表的新表头
时间复杂度为O(n),空间复杂度为O(1)

struct ListNode* rotateRight(struct ListNode* head, int k){
struct ListNode *temp=head,*p=head;
    if(!head) return head;
    int count=1;
    while(temp->next)
    {
        temp=temp->next;
        count++;
    }
    k%=count;
    if(k==0) return head;
    temp->next=head;
    count-=k;
    while(--count) p=p->next;
    temp=p->next;
    p->next=NULL;
    return temp;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

另一种思路:先把链表连接成环,再确定新的表头,这种方法少了一个while循环
但是不知道为什么,第二种方法执行用时更多,按理来说应该更快

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/395418
推荐阅读
相关标签
  

闽ICP备14008679号