题目描述
输入一个链表的头结点,按照从尾到头的顺序返回节点的值。
返回的结果用数组存储。
样例
输入:[2, 3, 5]
返回:[5, 3, 2]
算法
(遍历链表)
- 从前到后遍历一遍,然后把数组
reverse()
一遍。
时间复杂度
$O(n)$
C++ 代码
class Solution {
public:
vector<int> printListReversingly(ListNode* head) {
vector<int> res;
for(auto cur = head; cur; cur = cur->next)
res.push_back(cur->val);
reverse(res.begin(), res.end());
return res;
}
};
算法2
- API调用的不一样,调用
(rbegin(), rend())
,相关链接。
C++ 代码
/**
* 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(head)
{
res.push_back(head->val);
head = head->next;
}
return vector<int>(res.rbegin(), res.rend());
}
};