剑指Offer:面试题06.从尾到头打印链表
本文最后更新于 1765 天前,其中的信息可能已经有所发展或是发生改变。

要点

场景是先进后出,栈或递归都可以

题目

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

示例 1:

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

限制:

0 <= 链表长度 <= 10000

代码

package com.yuyy.algorithm;

import java.util.Stack;

public class 从尾到头打印链表 {
    public static class ListNode {
       int val;
       ListNode next;
       ListNode(int x) { val = x; }
   }

    public int[] reversePrint(ListNode head) {
        Stack<Integer> stack = new Stack<>();
        while(null!=head){
            stack.push(head.val);
            head=head.next;
        }
        int[] ints = new int[stack.size()];
        int size=stack.size();
        for (int i = 0; i < size; i++) {
            ints[i]=stack.pop();
        }
        return ints;
    }

    private int[] arr;
    private int k;
    private int size;
    public int[] reversePrint1(ListNode head) {
        k=0;
        size=0;
        dg(head);
        return arr;
    }

    public void dg(ListNode listNode){
        size++;
        if(null==listNode){
            arr=new int[--size];
            return;
        }
        dg(listNode.next);
        arr[k++]=listNode.val;
    }

    public ListNode create(){
        ListNode listNode = new ListNode(1);
        ListNode listNode1 = new ListNode(3);
        ListNode listNode2= new ListNode(2);
        ListNode listNode3 = new ListNode(3);
        ListNode listNode4 = new ListNode(4);
        listNode.next=listNode1;
        listNode1.next=listNode2;
//        listNode2.next=listNode3;
//        listNode3.next=listNode4;
        return listNode;
    }

    public static void main(String[] args) {
        从尾到头打印链表 clazz = new 从尾到头打印链表();
        int[] arr=clazz.reversePrint1(clazz.create());
//        int[] arr=clazz.reversePrint(new ListNode(1));
        for (int i = 0; i < clazz.k; i++) {
            System.out.println(arr[i]);
        }
    }
}

作者:Yuyy
博客:https://yuyy.info
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇