LeetCode 19. 刪除連結串列的倒數第 N 個結點
阿新 • • 發佈:2021-01-26
技術標籤:刷題
難度:中等。
雙指標,重點是思路,實現簡單。
正確解法:
/**
* Definition for singly-linked list.
* 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* removeNthFromEnd(ListNode* head, int n) {
if(head == NULL)return head;
if(head->next == NULL && n == 1)return NULL;
ListNode * result = head, *temp = head;
for(int i = 0; i < n; i++){
temp = temp -> next;
}
if(temp == NULL){
return head->next;
}
while(temp->next != NULL){
result = result->next;
temp = temp->next;
}
result->next = result->next->next;
return head;
}
};