c++解题
从尾到头打印链表
http://www.nowcoder.com/questionTerminal/d0267f7f55b3412ba93bd35cfa8e8035
总感觉可以使用这种简单粗暴的方法~
class Solution { public: vector<int> printListFromTailToHead(ListNode* head) { vector<int> A; while (head) { A.push_back(head->val); head = head->next; } reverse(A.begin(), A.end()); return A; } };