剑指Offer-3-从尾到头打印链表

题目描述

输入一个链表,按链表从尾到头的顺序返回一个ArrayList。

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
思路:利用栈的先进后出性质
/**
* struct ListNode {
* int val;
* struct ListNode *next;
* ListNode(int x) :
* val(x), next(NULL) {
* }
* };
*/
class Solution {
public:
//当作是没有头节点
vector<int> printListFromTailToHead(ListNode* head) {
vector<int> arr;
stack<int> stk;
ListNode* temp=head;
while(temp!=0){
stk.push(temp->val);
temp=temp->next;
}

while(!stk.empty()){
arr.push_back(stk.top());
stk.pop();
}

return arr;
}
};

----\(˙<>˙)/----赞赏一下吧~