题目链接
https://leetcode-cn.com/problems/cong-wei-dao-tou-da-yin-lian-biao-lcof/
题目
输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。
示例
示例 1: 输入:head = [1,3,2] 输出:[2,3,1]
限制
0 <= 链表长度 <= 10000
思路
遍历链表,用一个栈储存每个结点的val,然后依次将栈中元素弹出到数组中。
C++ Code
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
vector<int> reversePrint(ListNode* head) {
stack <int> L;
vector<int> l;
ListNode* cur=head;
while(cur!=NULL)
{
L.push(cur->val);
cur=cur->next;
}
while(!L.empty())
{
l.push_back(L.top());
L.pop();
}
return l;
}
};
|