leetcode/include/s0024_swap_nodes_in_pairs.hpp

18 lines
339 B
C++
Raw Normal View History

2022-11-14 03:57:10 +00:00
#ifndef S0024_SWAP_NODES_IN_PAIRS
#define S0024_SWAP_NODES_IN_PAIRS
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* swapPairs(ListNode* head);
};
#endif