This commit is contained in:
2022-11-15 15:00:00 +08:00
parent da63dcb16b
commit 5f1b40adc4
2 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#ifndef S0025_REVERSE_NODES_IN_K_GROUP
#define S0025_REVERSE_NODES_IN_K_GROUP
#include <utility>
#include <tuple>
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) {}
};
class Solution {
public:
ListNode* reverseKGroup(ListNode* head, int k);
};
#endif