摘要:
46. 全排列 题目链接 题目描述 代码实现 分析: 代码: class Solution { List<List<Integer>> ans = new ArrayList<>(); List<Integer> path = new ArrayList<>(); public List<List< 阅读全文
摘要:
200. 岛屿数量 题目链接 题目描述 代码实现 分析: dfs 代码: class Solution { public int numIslands(char[][] grid) { int ans = 0; for (int i = 0; i < grid.length; i++){ for(i 阅读全文