[LeetCode]Rotate List

本文介绍了一种链表右旋算法的具体实现方法,通过双指针技术有效地完成了链表节点的旋转操作。该算法首先确定链表长度,并计算实际需要旋转的位置,然后使用两个指针分别指向链表的不同位置,最终完成链表的旋转。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

struct ListNode {
	int val;
	ListNode *next;
	ListNode(int x) : val(x), next(NULL) {}
};

class Solution {
//draw some pictures and then think it twice, just be careful when process pointers
public:
	ListNode *rotateRight(ListNode *head, int k) {
		// Start typing your C/C++ solution below
		// DO NOT write int main() function
		ListNode* run = head;
		int len = 0;
		for(; run != NULL; run = run->next, len++);
		if(len == 0) return NULL;
		k = k%len;
		if(k == 0) return head;

		ListNode* second = head;
		ListNode* first = head;
		while (k--)
			first = first->next;
		while (first->next != NULL)
		{
			second = second->next;
			first = first->next;
		}
		ListNode* newHead = second->next;
		second->next = NULL;
		first->next = head;
		return newHead;
	}
};

second time

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode *rotateRight(ListNode *head, int k) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        if(head == NULL) return head;
        int len = 0;
        ListNode* tmp = head;
        while(tmp != NULL) len++, tmp = tmp->next;
        k = k%len;
        if(k == 0) return head;
        
        ListNode* fast = head;
        ListNode* slow = head;
        int i;
        for(i = 0; i < k && fast != NULL; ++i) fast = fast->next;
        //if(i != k-1)//...k is too large k > len?
        while(fast != NULL)
        {
            fast = fast->next;
            slow = slow->next;
        }
        //if(slow == head) return head;
        ListNode* newHead = slow;
        ListNode* oldSlow = slow;
        while(slow->next != NULL) slow = slow->next;
        slow->next = head;
        while(slow->next != oldSlow) slow = slow->next;
        slow->next = NULL;
        
        return newHead;
    }
};


评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

AI记忆

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值