LintCode 174.刪除鏈表中倒數第n個節點

思路 結合前面一題的思路即可 /** * Definition of singly-linked-list: * class ListNode { * public: * int val; * ListNode *next; * ListNode(int val) { * this->val = val; * this->next = NULL; * } * } */ class Solution
相關文章
相關標籤/搜索