JZ6题解 | #从尾到头打印链表#
从尾到头打印链表
https://www.nowcoder.com/practice/d0267f7f55b3412ba93bd35cfa8e8035
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : * val(x), next(NULL) { * } * }; */ class Solution { public: vector<int> printListFromTailToHead(ListNode* head) { vector<int> res, tempVec; if (head == nullptr) { return res; } ListNode* p = head; while (p != nullptr) { tempVec.push_back(p->val); p = p->next; } for (int i = tempVec.size() - 1; i >= 0; i--) { res.push_back(tempVec[i]); } return res; } };