输入一个链表,从尾到头放入ArrayList并返回。
/**
* struct ListNode {
* int val;
* struct ListNode *next;
* ListNode(int x) :
* val(x), next(NULL) {
* }
* };
*/
class Solution {
public:
vector<int> printListFromTailToHead(ListNode* head) {
int length=0;
ListNode *p=head;
vector<int> ArrayList;
while(p!=nullptr){
ArrayList.push_back(p->val);
p=p->next;
length++;
}
reverse(ArrayList.begin(),ArrayList.end());
return ArrayList;
}
};
头插vector效率很低,所以采用先push_back,后翻转vector的方式。
原文:https://www.cnblogs.com/MarkKobs-blog/p/10344500.html