本文共 531 字,大约阅读时间需要 1 分钟。
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */class Solution { public: vector reversePrint(ListNode* head) { stack s; vector ans; while(head!=NULL) { s.push(head->val); head=head->next; } while(s.size()) { ans.push_back(s.top()); s.pop(); } return ans; }};
转载地址:http://alao.baihongyu.com/