首页 > 其他 > 详细

剑指 Offer 06. 从尾到头打印链表

时间:2020-08-06 13:30:15      阅读:52      评论:0      收藏:0      [点我收藏+]

虽然很快做出来,但是性能并不好;

用ArrayList做的:

public int[] reversePrint(ListNode head) {
        ArrayList<Integer> list = new ArrayList<>();
        while(head != null){
            list.add(0,head.val);
            head = head.next;
        }
        return list.stream().mapToInt(Integer::valueOf).toArray();
    }

技术分享图片

 

 


方法二:

先知道链表长度,初始化数组,填入数组;

public int[] reversePrint(ListNode head) {
        int count = 0;
        ListNode node = head;
        while(node != null){
            count++;
            node = node.next;
        }
        int[] nums = new int[count];
        for(int i = count-1;i>=0;i--){
            nums[i] = head.val;
            head = head.next;
        }
        
        return nums;
    }

技术分享图片

 

剑指 Offer 06. 从尾到头打印链表

原文:https://www.cnblogs.com/taoyuxin/p/13445496.html

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