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

https://www.nowcoder.com/share/jump/5876869471694320610523

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) {
*        }
*  };
*/
#include <vector>
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        vector<int> v;
        if(head)
        {
            v=printListFromTailToHead(head->next);
            v.push_back(head->val);
        }
        return v;
    }
};

#剑指offer#
剑指offer刷题 文章被收录于专栏

坚持!努力!学习

全部评论
兄弟,试试光伏电池行业~
点赞 回复 分享
发布于 2023-09-10 16:25 浙江

相关推荐

10-13 12:53
已编辑
湖北工业大学 前端工程师
小海c:包装一下,第一个感觉是字节青训营的那个,后面那个是黑马的
点赞 评论 收藏
分享
11-04 19:05
已编辑
东莞城市学院 单片机
不知道怎么取名字_:你这个要实习两年?哪有这么久的,感觉就是即使你毕业了,但还按实习的话,是不是不用给你缴社保公积金啥的
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

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