小声哔哔 ac过后才发现大佬的题解更简单
氮素写都写了 就当我←作好了
class Solution {
public:
vector<int> printListReversingly(ListNode* head) {
vector<int> p,t;
while(head!=NULL){
p.push_back(head->val);//在容器的最后一个位置插入元素
head=head->next;//指针指向下一位
}
while(!p.empty()){
t.push_back(p.back());//压入p的最后一个元素
p.pop_back();//弹出p的最后一个元素
}
return t;
}
};