【算法設計與分析作業題】第十週:19. Remove Nth Node From End of List

題目 C++ solution /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public:
相關文章
相關標籤/搜索