首页 > 其他 > 详细

剑指Offer总结——从尾到头打印链表

时间:2020-03-04 00:12:17      阅读:75      评论:0      收藏:0      [点我收藏+]
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        if(head == nullptr) {
            return {};
        }
        vector<int> res;
        helper(res, head);
        return res;
    }
    void helper(vector<int>& res, ListNode* head) {
        if(head->next == nullptr) {
            res.push_back(head->val);
            return;
        }
        helper(res, head->next);
        res.push_back(head->val);
    }
};

题目描述:
输入一个链表,按链表从尾到头的顺序返回一个ArrayList。

思路:递归

剑指Offer总结——从尾到头打印链表

原文:https://www.cnblogs.com/yejianying/p/jianzhioffer_printListFromTailToHead.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!