(鏈表) leetcode 25. Reverse Nodes in k-Group

解法一:用棧來實現鏈表反轉 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public:
相關文章
相關標籤/搜索