首页 > 其他 > 详细

从尾到头打印链表

时间:2019-08-17 00:06:01      阅读:124      评论:0      收藏:0      [点我收藏+]

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.递归不好

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

从尾到头打印链表

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

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