刷题6 从尾到头打印链表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了刷题6 从尾到头打印链表相关的知识,希望对你有一定的参考价值。

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

 

最初思路:

 1 /**
 2 *  struct ListNode {
 3 *        int val;
 4 *        struct ListNode *next;
 5 *        ListNode(int x) :
 6 *              val(x), next(NULL) {
 7 *        }
 8 *  };
 9 */
10 class Solution {
11 public:
12     vector<int> printListFromTailToHead(ListNode* head) {
13         vector<int> array;
14 
15         while(head != NULL) 
16         {
17             array.push_back(head->val);
18             head = head->next;
19         }
20         
21         return vector<int>(array.rbegin(), array.rend());
22     }
23 };

 

方法多了去了,比如用vector跟stack配合:

 1 /**
 2 *  struct ListNode {
 3 *        int val;
 4 *        struct ListNode *next;
 5 *        ListNode(int x) :
 6 *              val(x), next(NULL) {
 7 *        }
 8 *  };
 9 */
10 class Solution {
11 public:
12     vector<int> printListFromTailToHead(ListNode* head) {
13         vector<int> result;
14         stack<int> stack;
15         while(head != NULL) 
16         {
17             stack.push(head->val);
18             head = head->next;
19         }
20         
21         while(!stack.empty())
22         {
23             result.push_back(stack.top());
24             stack.pop();
25         }
26         return result;
27     }
28 };

 

vector跟stack结合的还有用stack<ListNode*>的。

 

以上是关于刷题6 从尾到头打印链表的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode刷题(158)~从尾到头打印链表递归|辅助栈

刷题记录-剑指offer6:从尾到头打印链表

LeetCode刷题剑指Offer6-简单-从尾到头打印链表

LeetCode刷题剑指Offer6-简单-从尾到头打印链表

LeetCode 面试题06. 从尾到头打印链表

6. 从尾到头打印链表[java]