难度:简单
输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。
示例 1:
输入:
head = [1,3,2]
输出:
[2,3,1]
限制:
0 <= 链表长度 <= 10000
思路:栈记录,先进先出
class Solution {
public:
vector<int> reversePrint(ListNode* head) {
vector<int> ans;
stack<int> s;
if(head == NULL){
return ans;
}
while(head){
s.push(head->val);
head = head->next;
}
while(!s.empty()){
ans.push_back(s.top());
s.pop();
}
return ans;
}
};
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/cong-wei-dao-tou-da-yin-lian-biao-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

该博客介绍了如何使用栈来实现链表的反转打印,从尾到头返回链表每个节点的值。通过创建一个栈,将链表节点依次压入栈中,然后依次弹出栈顶元素,得到反转后的顺序。这种方法适用于链表长度小于等于10000的情况。
353

被折叠的 条评论
为什么被折叠?



