leetcode25. Reverse Nodes in k-Group

2023-11-22 00:30
文章标签 reverse nodes group leetcode25

本文主要是介绍leetcode25. Reverse Nodes in k-Group,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目:题目链接

这题是hard诶,题目本身难度其实还好,但我debug是真的hard…
思路:把这题拆开,首先解决如何反转k个结点的链表
首先创建一个头结点root,root->next=nullptr。然后依次插入结点。依次插入结点示意图
然后我们再输出root->next,这样是不是就反转了链表呀。知道了逻辑,我们开始敲代码:

class Solution {
public:ListNode* reverseList(ListNode* head) {ListNode* root = new ListNode();ListNode* dummy_node = root;while(head){ListNode* root_next_node = root->next;root->next = head;ListNode* head_next_node = head->next;head->next = root_next_node;head = head_next_node;}return dummy_node->next;}
};

参考例题:反转列表

好,解决了反转k个结点的列表的问题,我们只需要判断剩下的结点到底是否>k,否则不需要反转剩下的了。

那么,我们就要从反转中得到一些信息。什么信息?反转后列表的第一个结点。以及该列表的下一个结点,因为这个结点是我们下次反转(如果需要反转的话)的起点。

还有一点,我们对于整个列表而言还需要一个头结点,因为我们要反转很多次⌊n/k⌋。所以我们要每次都把反转好的链表加入到头结点后面,注意头结点每次都要是当前答案链表的最后一个元素哦。!!
其他的细节看代码就可以了:

/*** Definition for singly-linked list.* struct ListNode {*     int val;*     ListNode *next;*     ListNode() : val(0), next(nullptr) {}*     ListNode(int x) : val(x), next(nullptr) {}*     ListNode(int x, ListNode *next) : val(x), next(next) {}* };*/
class Solution {
public:ListNode* reverse(ListNode* head, int k, ListNode*& next_node) {//反转从head开始的k个结点,并第k+1个结点赋值给next_node。注意最后一个是引用,因为要修改实际值哦ListNode* root = new ListNode();//头结点while (k--) {//执行k次,每次把head结点插入到root后面,这样就可以反转了ListNode* p = root->next;root->next = head;ListNode* q = head->next;head->next = p;head = q;next_node = q;}return root->next;}ListNode* reverseKGroup(ListNode* head, int k) {if (!(head && head->next)) return head;//如果没有或只有一个,直接返回就可以了ListNode* root = new ListNode();//用来当头结点,方便操作ListNode* begin = head;//每次将要反转链表的第一个结点ListNode* res = root;//用来保存root的头结点,因为最后是要输出第一个结点while (head){begin = head;for (int i = 1; i < k; ++i) {head = head->next;if (!head) {//如果没有k个,直接把后面的结点都接到root后面,然后返回就可以了root->next = begin;return res->next;}}//正常表示有k个root->next = reverse(begin, k, head);//执行反转操作,返回被反转链表的第一个结点root = begin;//将root指向答案链表的最后一个元素}return res->next;}};

大概就是这样了,其他的细节只要你动手实现,应该就可以看懂的。加油加油加油!!!

这篇关于leetcode25. Reverse Nodes in k-Group的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/406175

相关文章

MySQL报错sql_mode=only_full_group_by的问题解决

《MySQL报错sql_mode=only_full_group_by的问题解决》本文主要介绍了MySQL报错sql_mode=only_full_group_by的问题解决,文中通过示例代码介绍的非... 目录报错信息DataGrip 报错还原Navicat 报错还原报错原因解决方案查看当前 sql mo

leetcode-24Swap Nodes in Pairs

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode swapPairs(L

matlab读取NC文件(含group)

matlab读取NC文件(含group): NC文件数据结构: 代码: % 打开 NetCDF 文件filename = 'your_file.nc'; % 替换为你的文件名% 使用 netcdf.open 函数打开文件ncid = netcdf.open(filename, 'NC_NOWRITE');% 查看文件中的组% 假设我们想读取名为 "group1" 的组groupName

AI辅助编程里的 Atom Group 的概念和使用

背景 在我们实际的开发当中,一个需求往往会涉及到多个文件修改,而需求也往往有相似性。 举个例子,我经常需要在 auto-coder中需要添加命令行参数,通常是这样的: /coding 添加一个新的命令行参数 --chat_model 默认值为空 实际上这个需求涉及到以下文件列表: /Users/allwefantasy/projects/auto-coder/src/autocoder/auto

group by 新体会

group by 分组语句中的 select 后面查询的东西,只能是 group by 中的字段或聚合函数,如果含有group by 中的没有的字段,sql 会报错。 表users   例子:  1.select count(1),sex from users group by sex; sql执行正确   2.select count(id),sex from users gr

leetcode#541. Reverse String II

题目 Given a string and an integer k, you need to reverse the first k characters for every 2k characters counting from the start of the string. If there are less than k characters left, reverse all of

[LeetCode] 7. Reverse Integer

题:https://leetcode.com/problems/reverse-integer/description/ 题目 Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123Output: 321Example 2:Input: -123Output: -321Ex

[LeetCode] 190. Reverse Bits

题:https://leetcode.com/problems/reverse-bits/ 题目大意 将32位的数,二进制翻转。 解题思路 解法和 将int a =123,翻转的思路 相同。 int b= 0;while(a>0){b = b*10 + a %10;a /=10;} 将新数整体左移一位,然后 取每个数的第i位置,将该位放到 新数的最低位。循环32次遍可以得到翻转。

[LeetCode] 863. All Nodes Distance K in Binary Tree

题:https://leetcode.com/problems/all-nodes-distance-k-in-binary-tree/ 题目大意 求给树中,距给定 结点 指定长度的 所有结点的val 思路 tree -> graph 、 bfs 先遍历树,并用map记录每个结点的父结点 ,将树变为图,然后 bfs。 /*** Definition for a binary tree

【Mysql】系统服务启动访问报错问题处理:this is incompatible with sql_mode=only_full_group_by

一、背景: 本来已经正常运行的平台,突然有一天由于对服务器进行部分操作迁移,发现jar可以正常启动,但是访问功能一直报错,监控后台日志后,发现了问题: 报错的具体信息如下: Caused by: java.sql.SQLSyntaxErrorException: Expression #1 of SELECT list is not in GROUP BY clause and conta