首页 > 其他 > 详细

LeetCode-从尾到头打印链表

时间:2020-06-18 23:14:57      阅读:59      评论:0      收藏:0      [点我收藏+]

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/cong-wei-dao-tou-da-yin-lian-biao-lcof/

问题

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

示例:

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

输出:[2,3,1]

链表结构

public class ListNode{
    int val;
    ListNode next;
    ListNode(int x){ val = x; }
}

解答

递归实现

i为计数器,记录节点的个数

从最后一个元素开始,向数组中放入自身的值

class Solution {
    public int[] reversePrint(ListNode head) {
        return reverse(head,0);
    }

    public int[] reverse(ListNode head,int i){
        if(head==null){
            return new int[i];
        }
        int[] arr = reverse(head.next,i+1);
        arr[arr.length-i-1] = head.val;
        return arr;
    }
}

执行用时:0ms

内存消耗:40.8MB

栈实现

利用栈先进后出的特点,倒置读取链表的值。

class Solution {
    public int[] reversePrint(ListNode head) {
        Stack<ListNode> stack = new Stack<>();
        ListNode temp = head;
        while(temp!=null){
            stack.push(temp);
            temp = temp.next;
        }
        int[] res = new int[stack.size()];
        int cnt = 0;
        while(!stack.isEmpty()){
            res[cnt] = stack.pop().val;
            cnt++;
        }
        return res;
    }
}

执行用时:1ms

内存消耗:40.3MB

LeetCode-从尾到头打印链表

原文:https://www.cnblogs.com/HenuAJY/p/13160521.html

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