从尾到头打印链表
输入一个链表的头结点,按照 从尾到头 的顺序返回节点的值。
返回的结果用数组存储。
样例
1
2
|
输入:[2, 3, 5]
返回:[5, 3, 2]
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
vector<int> printListReversingly(ListNode* head) {
vector<int> res;
while(true) {
if(head== NULL) break;
int curValue = head->val;
res.push_back(curValue);
head = head->next;
}
reverse(res.begin(),res.end());
return res;
}
};
|