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

从尾到头打印链表

时间:2018-08-18 13:20:13      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:tle   class   from   顺序   tno   item   style   col   stack   

题目描述

输入一个链表,按链表值从尾到头的顺序返回一个ArrayList。
方法1:利用递归
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        vector<int> res;
        printListFromTailToHead(res,head);
        return res;
        
    }
    void printListFromTailToHead(vector<int>& res,ListNode* node)
    {
        if(node!=NULL)
        {
           printListFromTailToHead(res,node->next); 
           res.push_back(node->val);
        }
    }
};

 

方法2:利用栈
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        
        vector<int> res;
        stack<int> stk;
        int value;
        ListNode* p = head;
        while(p!=NULL)
        {
            stk.push(p->val);
            p = p->next;
        }
        while(!stk.empty())
        {
            value = stk.top();
            stk.pop();
            res.push_back(value);
        }
        return res;
    }
};

 

方法3:利用stl中algorithm库的反转函数reverse
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        
        vector<int> res;
        ListNode* p = head;
        while(p!=NULL)
        {
            res.push_back(p->val);
            p = p->next;
        }
        reverse(res.begin(),res.end());
        return res;
    }
};

 

 

从尾到头打印链表

标签:tle   class   from   顺序   tno   item   style   col   stack   

原文地址:https://www.cnblogs.com/dreamstick/p/9496548.html

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