leetcode/include/s0025_reverse_nodes_in_k-group.hpp

24 lines
496 B
C++
Raw Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0025_REVERSE_NODES_IN_K_GROUP_HPP
#define S0025_REVERSE_NODES_IN_K_GROUP_HPP
2022-11-15 07:00:00 +00:00
#include <tuple>
2022-11-30 10:20:36 +00:00
#include <utility>
2022-11-15 07:00:00 +00:00
using namespace std;
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) {}
};
2022-11-30 10:20:36 +00:00
class S0025 {
2022-11-15 07:00:00 +00:00
public:
ListNode* reverseKGroup(ListNode* head, int k);
2022-11-30 10:20:36 +00:00
pair<ListNode*, ListNode*> myReverse(ListNode* head, ListNode* tail);
2022-11-15 07:00:00 +00:00
};
#endif