【leetcode】200. (Medium)Number of Islands

解題思路: DFS 提交代碼: class Solution { public int numIslands(char[][] grid) { if(grid==null||grid.length==0) return 0; int[][] tmp=new int[grid.length][grid[0].length]; int cnt=0;
相關文章
相關標籤/搜索