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

从尾到头打印链表

时间:2019-08-16 22:26:53      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:ext   class   函数调用   从尾到头打印链表   递归   from   stack   result   pre   

1、遍历压栈,出栈打印,前进后出

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) {
*        }
*  };
*/
class Solution {
public:
 vector<int> printListFromTailToHead(ListNode* head)
{ 
  ListNode * Node=head;
  stack<int> s;
  vector<int> result;
   if(head==NULL)//链表为空
     return result;

  while(Node!=NULL)//循环到最后节点
  {
  s.push(Node->val);
  Node=Node->next;//向后遍历
  }

 while(!s.empty())
 {
   result.push_back(s.top());
   s.pop();
 }

return result;

}
};

2.递归不好

链表非常长的时候会导致调用很深!! 可能导致函数调用栈溢出!!

从尾到头打印链表

标签:ext   class   函数调用   从尾到头打印链表   递归   from   stack   result   pre   

原文地址:https://www.cnblogs.com/cgy1012/p/11366639.html

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