摘要: JZ29 顺时针打印矩阵 1 /* 模拟 */ 2 public class JZ29_1 3 { 4 public static ArrayList<Integer> printMatrix(int[][] matrix) 5 { 6 ArrayList<Integer> res = new Ar 阅读全文
posted @ 2023-09-15 21:36 Vivid-BinGo 阅读(4) 评论(0) 推荐(0) 编辑
摘要: JZ6 从尾到头打印链表 1 /* 从尾到头递归 */ 2 public class JZ6_1 3 { 4 private static ArrayList<Integer> res = new ArrayList<>(); 5 6 public static ArrayList<Integer> 阅读全文
posted @ 2023-09-15 10:11 Vivid-BinGo 阅读(3) 评论(0) 推荐(0) 编辑