leetcode-面试题6-从尾到头打印链表
Posted oldby
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-面试题6-从尾到头打印链表相关的知识,希望对你有一定的参考价值。
题目描述:
java
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { public int[] reversePrint(ListNode head) { Stack<Integer> stack = new Stack<>(); while(head != null){ stack.push(head.val); head = head.next; } int size = stack.size(); int [] array = new int[size]; for(int i = 0; i < size; i++){ array[i] = stack.pop(); } return array; } }
以上是关于leetcode-面试题6-从尾到头打印链表的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode | 面试题06. 从尾到头打印链表剑指OfferPython
LeetCode 剑指offer 面试题06. 从尾到头打印链表