剑指 Offer 06. 从尾到头打印链表

链表定义: 

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */

1.递归:

 如果题做的多了,一下就能想出用递归的方式去做,递归还是自己多做题多领会吧,实在想不过来去算一遍数学中的均差。

代码如下:

class Solution {
    public int[] reversePrint(ListNode head) {
        List<Integer> list = new ArrayList<>();
        getAns(list, head);
        int[] ans = new int[list.size()];
        int index = 0;
        for (Integer num : list) {
            ans[index] = num;
            index++;
        }
        return ans;
    }
    private void getAns(List<Integer> list, ListNode node) {
        if (node == null) return;
        getAns(list, node.next);
        list.add(node.val);
    }
}

2.采用辅助数据结构(栈):

结合本题的要点,先进后出,可以联想到用栈来辅助实现。

代码如下:
 

class Solution {
    public int[] reversePrint(ListNode head) {
        //用辅助栈
        Stack<Integer> stack = new Stack<>();
        while (head != null) {
            stack.push(head.val);
            head = head.next;
        }
        int[] ans = new int[stack.size()];
        int index = 0;
        while (!stack.empty()) {
            ans[index] = stack.pop();
            index++;
        }
        return ans;
    }
}

路飞题解:https://leetcode-cn.com/problems/cong-wei-dao-tou-da-yin-lian-biao-lcof/solution/mian-shi-ti-06-cong-wei-dao-tou-da-yin-lian-biao-d/

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值