当前位置:网站首页>Nodes in the linked list are flipped in groups of k
Nodes in the linked list are flipped in groups of k
2022-08-10 22:30:00 【dry rice white】
描述
将给出的链表中的节点每 k 个一组翻转,返回翻转后的链表
如果链表中的节点数不是 k 的倍数,将最后剩下的节点保持原样
你不能更改节点中的值,只能更改节点本身.
数据范围: \ 0 \le n \le 2000 0≤n≤2000 , 1 \le k \le 20001≤k≤2000 ,链表中每个元素都满足 0 \le val \le 10000≤val≤1000
要求空间复杂度 O(1)O(1),时间复杂度 O(n)O(n)
例如:
给定的链表是 1\to2\to3\to4\to51→2→3→4→5
对于 k = 2k=2 , 你应该返回 2\to 1\to 4\to 3\to 52→1→4→3→5
对于 k = 3k=3 , 你应该返回 3\to2 \to1 \to 4\to 53→2→1→4→5
This topic has beenAC

解题思路:
拿到这题,One idea is to use the stack to write.As for why I thought of using a stack?Because it needs to be reversed,Here I see the requirements of the title,空间复杂度为 O(1).The first idea is to save the value,通过 newA new node has been implemented.但是仔细一想,It seems impossible,Because the space complexity is definitely not in line with this,突然灵机一动,We can use the stack to store nodes that are pointers,nice.
1→2→3→4→5 k = 2时
1→2→3→4→5 k = 3时
4和5It doesn't need to be flipped,So if you use a stack, it will bring another problem,Because the stack structure is first in last out,If you use the stack to save it will definitely lead to,4,5will also be flipped.
这里有两个解决方法,
1.把4,5再次入栈(入另一个栈),然后再输出 ok
2.Might as well not use the stack structure,We use a two-way queue(Moreover, the efficiency of inserting and deleting at the front and rear ends of the two-way queue is also quite high,So we use this structure best)
Let's look at an example:
1→2→3→4→5 k = 3时
准备工作,A pointer to this linked list head.一个deque,一个中间变量 tmpk
Some handy auxiliary pointers s和ans




Here we make a loop,while(head != nullptr) 是的,It can be done in one pass


此时退出循环,okk
判断 que是否为空或者tmpk是否等于 0
如果que不为空的话,说明queAt this time, the node does not need to be flipped
所以

那么这题就ok了,Of course the topic has some details,This can only be modified according to the actual test emptying
比如 {},2 {1,2},3 {1},2等
Attached the code I passed:
class Solution {
public:
/**
*
* @param head ListNode类
* @param k int整型
* @return ListNode类
*/
ListNode* reverseKGroup(ListNode* head, int k) {
// write code here
deque<ListNode*> sta;
int tmpk = k;
ListNode *s = nullptr;
ListNode *ans = nullptr;
while(head != nullptr)
{
sta.push_back(head);
head = head->next;
tmpk--;
if(tmpk == 0)
{
if(s == nullptr)
{
s = sta.back();
sta.pop_back();
ans = s;
}
while(!sta.empty())
{
s->next = sta.back();
sta.pop_back();
s = s->next;
}
tmpk = k;
}
}
while(!sta.empty())
{
if(s == nullptr)
{
s = sta.front();
sta.pop_front();
ans = s;
}
else
{
s->next = sta.front();
sta.pop_front();
s= s->next;
}
}
if(s != nullptr)
s->next = nullptr;
return ans;
}
};
边栏推荐
猜你喜欢

Regular expression of shell programming and text processor

GMT,UTC,CST,DST,RTC,NTP,SNTP,NITZ: 嵌入式的时间

Translating scientific and technological papers, how to translate from Russian to Chinese

电力系统潮流计算(牛顿-拉夫逊法、高斯-赛德尔法、快速解耦法)(Matlab代码实现)

【PCBA方案】电子握力测试仪方案she‘ji

What are the concepts, purposes, processes, and testing methods of interface testing?
![[Maui official version] Create a cross-platform Maui program, as well as the implementation and demonstration of dependency injection and MVVM two-way binding](/img/07/2baa3bd1d8da0f868fd49b5bdd0527.png)
[Maui official version] Create a cross-platform Maui program, as well as the implementation and demonstration of dependency injection and MVVM two-way binding

shell(文本打印工具awk)

Shell编程之条件语句(二)

【Maui正式版】创建可跨平台的Maui程序,以及有关依赖注入、MVVM双向绑定的实现和演示
随机推荐
win系统下pytorch深度学习环境安装
接口测试的概念、目的、流程、测试方法有哪些?
链表中的节点每k个一组翻转
port forwarding
uni-app微信小程序——下拉多选框
黑猫带你学Makefile第12篇:常见Makefile问题汇总
GMT,UTC,CST,DST,RTC,NTP,SNTP,NITZ: 嵌入式的时间
Common interview questions for APP UI automation testing, maybe useful~
JVM classic fifty questions, now the interview is stable
文件IO-缓冲区
爬虫request.get()出现错误
带着昇腾去旅行:一日看尽金陵城里的AI胜景
Conditional Statements of Shell Programming (2)
美味的石井饭
QT笔记——用VS + qt 生成dll 和 调用生成的dll
边缘与云计算:哪种解决方案更适合您的连接设备?
LeetCode每日两题02:反转字符串中的单词 (均1200道)
力扣221题,最大正方形
C # Hex file transfer skills necessary article 】 【 bin file code implementation
今日睡眠质量记录75分