码迷,mamicode.com
首页 > 其他好文 > 详细

从尾到头打印链表

时间:2020-02-24 09:59:42      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:next   方法   temp   leetcode   node   link   tco   顺序   一个   

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

 

示例 1:

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

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public int[] reversePrint(ListNode head) {
        if (head == null){
            return new int[0]; //返回[]
        }
        ListNode ln = head;
        List list = new ArrayList<Integer>();
        while (ln.next != null){
            list.add(ln.val);
            ln = ln.next;
        }
        list.add(ln.val);
        if(list.size() == 0){
            return new int[0];
        }
        int[] arr = new int[list.size()];
        int k = 0;
        for (int i=arr.length-1; i>=0; i--){
            arr[k++] = (int)list.get(i);
        }
        return arr;
    }
}

  

方法二:

栈的特点是后进先出,即最后压入栈的元素最先弹出。考虑到栈的这一特点,使用栈将链表元素顺序倒置。从链表的头节点开始,依次将每个节点压入栈内,然后依次弹出栈内的元素并存储到数组中。

/**
 * 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<ListNode> stack = new Stack<ListNode>();
        ListNode temp = head;
        while (temp != null) {
            stack.push(temp);
            temp = temp.next;
        }
        int size = stack.size();
        int[] print = new int[size];
        for (int i = 0; i < size; i++) {
            print[i] = stack.pop().val;
        }
        return print;
    }
}

作者:LeetCode-Solution
链接: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-b/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  

从尾到头打印链表

标签:next   方法   temp   leetcode   node   link   tco   顺序   一个   

原文地址:https://www.cnblogs.com/zldmy/p/12355362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!