61.旋转链表

题目描述

给你一个链表的头节点 head ,旋转链表,将链表每个节点向右移动 k 个位置。

示例 1:

输入:head = [1,2,3,4,5], k = 2
输出:[4,5,1,2,3]
示例 2:

输入:head = [0,1,2], k = 4
输出:[2,0,1]
提示:
链表中节点的数目在范围 [0, 500] 内
-100 <= Node.val <= 100
0 <= k <= 2 * 109

题解

本题不难,只需要找到newHead和newTail的位置,将原来的tail和原来的head连接,返回newHead就可以了。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */


struct ListNode* rotateRight(struct ListNode* head, int k){
    if (head == NULL) return NULL;  // Exception: empty list
    struct ListNode* preHead = head;
    struct ListNode* newHead = head;
    struct ListNode* newTail = head;
    struct ListNode* preTail = head;
    int ListSize = 1;
    // get the total size of the list as well as the previous tail of the list
    for (; preTail->next != NULL; preTail = preTail->next, ListSize++);
    k %= ListSize;
    if (k == 0) return head;
    // get the new tail of the new list
    // new head of the list is the successor of the new tail
    for (int i = 0; i < ListSize - k - 1; i++, newTail = newTail->next);
    newHead = newTail->next;
    newTail->next = NULL;
    // connect the previous tail to the previous head;
    preTail->next = preHead;
    return newHead;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值