首页 > 其他 > 详细

剑指offer66题 -- 输入一个链表,从尾到头打印链表每个节点的值

时间:2017-02-26 22:15:33      阅读:196      评论:0      收藏:0      [点我收藏+]

class Solution {
public:
vector<int> printListFromTailToHead(ListNode* head) {
  /*
    //变量定义区
    vector<int> result;
    std::stack<int> stk;
    ListNode* current = head;

    //入参有效性判断
    if(NULL == head)
       return result;

    //数据入栈
    while(current != NULL)
    {
        stk.push(current->val); //stack入栈函数push函数
        current = current->next;
    }

    //数据出栈
    while(!stk.empty())
    {
        int val = stk.top();
        result.push_back(val); //vector添加操作
        stk.pop();
     }
     return result;
    */

    //递归实现
    ListNode* current = head;
    vector<int> result;
    if(current != NULL)
    {
       if(current->next !=NULL)
      {
           result = printListFromTailToHead(current->next);
      }
     result.push_back(current->val); 

    }

    return result;
}
};

 

程序已通过牛客网测试用例。

剑指offer66题 -- 输入一个链表,从尾到头打印链表每个节点的值

原文:http://www.cnblogs.com/shewell/p/6446047.html

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