题解 | #从尾到头打印链表#

从尾到头打印链表

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

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) {
*        }
*  };
*/
#include <vector>
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        stack<int>stk;
        vector<int>res;
        while(head){
            stk.push(head->val);
            head=head->next;
        }
        while(stk.size()){
            res.push_back(stk.top());
            stk.pop();
        }
        return res;
    }
};

全部评论

相关推荐

02-23 00:10
湖南大学 C++
点赞 评论 收藏
分享
挣K存W养DOG:接好运
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务