-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path166.h
51 lines (46 loc) · 1.12 KB
/
166.h
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
/**
* Definition of ListNode
* class ListNode {
* public:
* int val;
* ListNode *next;
* ListNode(int val) {
* this->val = val;
* this->next = NULL;
* }
* }
*/
class Solution {
public:
/*
* @param head: The first node of linked list.
* @param n: An integer
* @return: Nth to last node of a singly linked list.
*/
ListNode * nthToLast(ListNode * head, int n) {
// write your code here
if(head == nullptr) return head;
// 1
// ListNode *dummyhead = head;
// int length = 0;
// while(dummyhead != nullptr){
// length++;
// dummyhead = dummyhead->next;
// }
// for(int i = 0; i < length - n; i++){
// head = head->next;
// }
// return head;
// 2 两根指针
int k = 0;
ListNode *fast = head, *slow = head;
while(k++ < n){
fast = fast->next;
}
while(fast != nullptr){
fast = fast->next;
slow = slow->next;
}
return slow;
}
};