JZ6 从尾到头打印链表JZ6 从尾到头打印链表题目链接从尾到头打印链表_牛客题霸_牛客网 (nowcoder.com)完整代码123456789101112131415161718192021/*** struct ListNode {* int val;* struct ListNode *next;* ListNode(int x) :* val(x), next(NULL) {* }* };*/class Solution {public: vector<int> printListFromTailToHead(ListNode* head) { vector<int> s; while (head!=NULL) { s.insert(s.begin(),head->val); //利用迭代器头插 head=head->next; } return s; }}; Algorithm C++ 牛客本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处! BLISlab tutoril阅读 上一篇JZ5 替换空格 下一篇 Please enable JavaScript to view the comments