码迷,mamicode.com
首页 > 其他好文 > 详细

从尾到头打印链表

时间:2019-04-27 22:50:33      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:reverse   from   list   ==   insert   输入   ptr   code   rom   

原文地址:https://www.jianshu.com/p/71189056556d
时间限制:1秒 空间限制:32768K

题目描述

输入一个链表,按链表值从尾到头的顺序返回一个ArrayList。

我的代码

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) {
*        }
*  };
*/
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        vector<int> res;
        if(head==nullptr) return res;
        while(head){
            res.push_back(head->val);
            head=head->next;
        }
        reverse(res.begin(),res.end());
        return res;
    }
};

运行时间:3ms
占用内存:476k

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) {
*        }
*  };
*/
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        vector<int> res;
        if(head==nullptr) return res;
        res.insert(res.begin(),head->val);
        if(head->next){
            vector<int> tmp=printListFromTailToHead(head->next);
            res.insert(res.begin(),tmp.begin(),tmp.end());
        }
        return res;
    }
};

运行时间:4ms
占用内存:484k

从尾到头打印链表

标签:reverse   from   list   ==   insert   输入   ptr   code   rom   

原文地址:https://www.cnblogs.com/cherrychenlee/p/10780850.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!