-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path19_Remove_Nth_Node_From_End_of_List.cpp
62 lines (54 loc) · 1.4 KB
/
19_Remove_Nth_Node_From_End_of_List.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
/**
* @brief The Solution class
Given a linked list, remove the n-th node from the end of list and return its head.
Example:
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the end, the linked list becomes 1->2->3->5.
Note:
Given n will always be valid.
*/
using namespace std;
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
ListNode* removeNthFromEnd(ListNode* head, int n) {
ListNode *root = nullptr;
return root;
}
void test(vector<int> &nums, int &target, vector<int> &ans)
{
vector<vector<int>> res = fourSum(nums, target);
cout << "res" << (mycompare(res, ans) ? " == " : " != ") << "ans" << ":";
for(size_t i=0; i<nums.size(); i++)
cout << nums.at(i) << " ";
cout << endl;
}
};
int main()
{
vector<vector<int>> strs = {{1,2,3,4,5}};
vector<int> targets = {2};
vector<vector<int>> ans = {{1,2,3,5}};
for(size_t i=0; i<ans.size(); i++)
{
Solution example;
example.test(strs.at(i), targets.at(i), ans.at(i));
}
return 0;
}