【剑指Offer】面试题06.从尾到头打印链表
题目
输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。
示例 1:
输入:head = [1,3,2]
输出:[2,3,1]
限制:
0 <= 链表长度 <= 10000
思路一:反转数组
代码
时间复杂度:O(n)
空间复杂度:O(1)
class Solution {
public:
vector<int> reversePrint(ListNode* head) {
vector<int> res;
if (!head) return res;
while (head != nullptr) {
res.push_back(head->val);
head = head->next;
}
reverse(res.begin(), res.end());
return res;
}
};
思路二:栈
代码
时间复杂度:O(n)
空间复杂度:O(n)
class Solution {
public:
vector<int> reversePrint(ListNode* head) {
vector<int> res;
if (!head) return res;
stack<int> st;
while (head != nullptr) {
st.push(head->val);
head = head->next;
}
while (!st.empty()) {
res.push_back(st.top());
st.pop();
}
return res;
}
};