首页 > 其他 > 详细

<剑指offer> 第3题

时间:2019-06-10 22:26:52      阅读:104      评论:0      收藏:0      [点我收藏+]

题目:输入一个链表的头节点,从尾到头反过来打印出每个节点的值

将链表从头到尾压入栈内,出栈的过程就对应着从尾到头

/**
*    public class ListNode {
*        int val;
*        ListNode next = null;
*
*        ListNode(int val) {
*            this.val = val;
*        }
*    }
*
*/
import java.util.ArrayList;
import java.util.Stack;

public class Solution {
      public ArrayList<Integer> printListFromTailToHead(ListNode listNode) {
        Stack<Integer> stack = new Stack<>();
        while (listNode != null){
            stack.push(listNode.val);
            listNode = listNode.next;
        }
        ArrayList<Integer> res = new ArrayList<>();
        while(!stack.isEmpty()){
            res.add(stack.pop());
        }
        return res;
    }

}

 

<剑指offer> 第3题

原文:https://www.cnblogs.com/HarSong13/p/11000722.html

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