zoukankan      html  css  js  c++  java
  • 从尾到头打印链表

    题目描述

    输入一个链表,从尾到头打印链表每个节点的值。

    输入描述:

    输入为链表的表头

    输出描述:

    输出为需要打印的“新链表”的表头
     

    解法一:递归实现(效率低)

    import java.util.ArrayList; class ListNode{ int val; ListNode next = null; ListNode(int val) { this.val = val; } } public class Solution { static ArrayList<Integer> arrayList = new ArrayList<Integer>(); public static ArrayList<Integer> printListFromTailToHead(ListNode listNode) { if (listNode != null) { printListFromTailToHead(listNode.next); arrayList.add(listNode.val); } return arrayList; } public static void main(String[] args) { ListNode a = new ListNode(1); ListNode b = new ListNode(2); ListNode c = new ListNode(3); a.next = b; b.next = c; System.out.println(printListFromTailToHead(a)); } }

    解法

    二:借助栈实现复杂度为O(n)

    class ListNode{ int val; ListNode next = null; ListNode(int val) { this.val = val; } } public class Solution { public static ArrayList<Integer> printListFromTailToHead(ListNode1 listNode) { Stack<Integer> stack = new Stack<Integer>(); ArrayList<Integer> arry = new ArrayList<Integer>(); while (listNode != null) { stack.push(listNode.val); listNode = listNode.next; } while (!stack.empty()) { arry.add(stack.pop()); } return arry; } public static void main(String[] args) { ListNode1 a = new ListNode1(1); ListNode1 b = new ListNode1(2); ListNode1 c = new ListNode1(3); a.next = b; b.next = c; System.out.println(printListFromTailToHead(a)); } }

  • 相关阅读:
    加入mapstruct后出现 找不到符号 符号: 方法 setXX 的解决方法
    解决docker容器日志导致主机磁盘空间满了的情况
    prometheus安装(docker)
    在Github或Gitee上用hexo搭建个人博客
    解决github打不开
    jenkins更新为国内源
    让sentinel-dashboard的流控配置持久化到nacos
    Yarn和Zookeeper的区别
    flink安装启动(docker)
    jQuery 事件源码定位
  • 原文地址:https://www.cnblogs.com/0xcafedaddy/p/5258333.html
Copyright © 2011-2022 走看看