首页 > 其他 > 详细

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

时间:2021-04-07 09:20:14      阅读:19      评论:0      收藏:0      [点我收藏+]

题解

迭代

先求出链表的长度,最后反着添加元素即可

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public int[] reversePrint(ListNode head) {
        ListNode node = head;
        int count = 0;
        while(node != null){
            node = node.next;
            count ++;
        }
        int[] res = new int[count];
        for(int i = count - 1; i >= 0; -- i){
            res[i] = head.val;
            head = head.next;
        }

        return res;
    }
}

回溯

直接利用回溯算法直接就是从后面添加

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    List<Integer> list = new ArrayList<>();
    public int[] reversePrint(ListNode head) {
        backTracking(head);
        int[] res = new int[list.size()];
        for(int i = 0; i < list.size(); ++ i){
            res[i] = list.get(i);
        }
        return res;
    }

    void backTracking(ListNode head){
        if(head == null) return;
        backTracking(head.next);
        list.add(head.val);
    }
}

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

原文:https://www.cnblogs.com/Lngstart/p/14624662.html

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