摘要: 46. 全排列 题目链接 题目描述 代码实现 分析: 代码: class Solution { List<List<Integer>> ans = new ArrayList<>(); List<Integer> path = new ArrayList<>(); public List<List< 阅读全文
posted @ 2024-12-17 22:59 chendsome 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 200. 岛屿数量 题目链接 题目描述 代码实现 分析: dfs 代码: class Solution { public int numIslands(char[][] grid) { int ans = 0; for (int i = 0; i < grid.length; i++){ for(i 阅读全文
posted @ 2024-12-17 13:47 chendsome 阅读(3) 评论(0) 推荐(0) 编辑