文章目录
- AcWing 17. 从尾到头打印链表
- AC代码
AcWing 17. 从尾到头打印链表
本题链接:AcWing 17. 从尾到头打印链表
本博客给出本题截图:
AC代码
代码:
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: vector<int> printListReversingly(ListNode* head) { vector<int> res; while (head) { res.push_back(head->val); head = head->next; } return vector<int>(res.rbegin(), res.rend()); } };