题解 | 从尾到头打印链表

从尾到头打印链表

https://www.nowcoder.com/practice/d0267f7f55b3412ba93bd35cfa8e8035

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) {
*        }
*  };
*/
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        vector<int> a;
        stack<int> s;
        if(head == nullptr)
        {
            return a ;
        }
        while(head != nullptr){
            s.push(head->val);
            head = head->next;
        }
        while(!s.empty()){
            int temp =s.top();
            s.pop();
            a.push_back(temp);
        }
        return a;
    }
};

利用堆栈来实现,但是要注意堆栈的元素的弹出。

全部评论

相关推荐

不愿透露姓名的神秘牛友
2025-12-19 10:45
秋招路在何方:少了啊,我身边都是350000k*18,发三体货币
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务