剑指OFFER----面试题06. 从尾到头打印链表
Posted clown9804
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指OFFER----面试题06. 从尾到头打印链表相关的知识,希望对你有一定的参考价值。
链接:https://leetcode-cn.com/problems/cong-wei-dao-tou-da-yin-lian-biao-lcof/
代码:
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: vector<int> reversePrint(ListNode* head) { vector<int> res; while (head) { res.push_back(head->val); head = head->next; } return vector<int>(res.rbegin(), res.rend()); } };
以上是关于剑指OFFER----面试题06. 从尾到头打印链表的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 剑指offer 面试题06. 从尾到头打印链表