[Leetcode]旋转链表

题目#

 

代码 #

/**
 * 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) {
     if(head==nullptr)
       return nullptr;
		auto ptr = head;
		int length = 0;
		while (ptr != nullptr)
		{
			ptr = ptr->next;
			length++;
		}
    
    k=k%length;
     if(k==0)
       return head;
		//54321 2
		auto newHead = ReverseList(head, length);
     if(k==length)
       return newHead;
		//45321 2
		newHead = ReverseList(newHead, k);
		//45123 2
		int num = k;
		auto nextHead = newHead;
		while (num > 0)
		{
			nextHead = nextHead->next;
			num--;
		}
		auto nextNewHead=ReverseList(nextHead, length - k);
		auto connPtr = newHead;
		while (k > 1)
		{
			connPtr = connPtr->next;
			k--;
		}
		connPtr->next = nextNewHead;
		return newHead;

	}
	/*
   * head 开始结点
   * num 翻转的个数
   * return 反转后的头结点
   */
	ListNode* ReverseList(ListNode*head, int num)
	{
		if (head == nullptr || num == 0)
			return nullptr;
		auto realTail = head;

		ListNode* newHead = nullptr;
		ListNode* temp = nullptr;
		while (num>0)
		{
			temp = head->next;
			head->next = newHead;
			newHead = head;
			head = temp;
			num--;
		}
		realTail->next = temp;
		return newHead;
	}
};

 

作者:lizhenghao126

出处:https://www.cnblogs.com/lizhenghao126/p/11053559.html

版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。

posted @   李正浩  阅读(85)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 【杭电多校比赛记录】2025“钉耙编程”中国大学生算法设计春季联赛(1)
点击右上角即可分享
微信分享提示
more_horiz
keyboard_arrow_up dark_mode palette
选择主题
menu