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

剑指offer(3):从尾到头打印单链表

时间:2018-04-19 23:59:08      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:off   bsp   return   offer   turn   ptr   剑指offer   nullptr   str   

输入一个链表,从尾到头打印链表每个节点的值。

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) 
*        }
*  };
*/
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        vector<int> inverse;
        stack<int> node_values;
        
        ListNode * pNode = head;
        while(pNode != nullptr)
        {
            node_values.push(pNode->val);
            pNode = pNode->next;
        }
        
        while(!node_values.empty())
        {
            inverse.push_back(node_values.top());
            node_values.pop();
        }
        return inverse;
        
    }
};

 

剑指offer(3):从尾到头打印单链表

标签:off   bsp   return   offer   turn   ptr   剑指offer   nullptr   str   

原文地址:https://www.cnblogs.com/heifengli/p/8886346.html

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