解法1:先知道链表的长度是多少,然后创建数组,最后倒叙给数组赋值。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/class Solution {public int[
力扣每日一题——剑指 Offer 06. 从尾到头打印链表 题目描述 代码注释 /*** Definition for singly-linked list.* struct ListNode {* int val;* struct ListNode *next;* };*//*** Note: The returned array must be malloced, a