递归:
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
vector<int> reversePrint(ListNode* head) {
if (!head) return {};
vector<int> res = reversePrint(head->next);
res.push_back(head->val);
return res;
}
};
栈:
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
vector<int> reversePrint(ListNode* head) {
stack<int> s;
while(head) {
s.push(head->val);
head = head->next;
}
vector<int> res;
res.reserve(s.size());
while (!s.empty()) {
res.push_back(s.top());
s.pop();
}
return res;
}
};