首页 > 其他 > 详细

【剑指Offer】面试题06.从尾到头打印链表

时间:2020-02-13 19:04:34      阅读:30      评论:0      收藏:0      [点我收藏+]

题目

输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。

示例 1:

输入:head = [1,3,2]
输出:[2,3,1]

限制:
0 <= 链表长度 <= 10000

思路一:反转数组

代码

时间复杂度:O(n)
空间复杂度:O(1)

class Solution {
public:
    vector<int> reversePrint(ListNode* head) {
        vector<int> res;
        if (!head) return res;
        while (head != nullptr) {
            res.push_back(head->val);
            head = head->next;
        }
        reverse(res.begin(), res.end());
        return res;
    }
};

思路二:栈

代码

时间复杂度:O(n)
空间复杂度:O(n)

class Solution {
public:
    vector<int> reversePrint(ListNode* head) {
        vector<int> res;
        if (!head) return res;
        stack<int> st;
        while (head != nullptr) {
            st.push(head->val);
            head = head->next;
        }
        while (!st.empty()) {
            res.push_back(st.top());
            st.pop();
        }        
        return res;
    }
};

【剑指Offer】面试题06.从尾到头打印链表

原文:https://www.cnblogs.com/galaxy-hao/p/12304405.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!