码迷,mamicode.com
首页 > 其他好文 > 详细

剑指OFFER----面试题06. 从尾到头打印链表

时间:2020-02-15 18:37:54      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:node   solution   col   offer   class   http   rev   null   leetcode   

链接: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. 从尾到头打印链表

标签:node   solution   col   offer   class   http   rev   null   leetcode   

原文地址:https://www.cnblogs.com/clown9804/p/12312843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!