leetcode200-岛屿数量

原题

给定一个由 '1'(陆地)和 '0'(水)组成的的二维网格,计算岛屿的数量。一个岛被水包围,并且它是通过水平方向或垂直方向上相邻的陆地连接而成的。你可以假设网格的四个边均被水包围。

示例1:

输入:
11110
11010
11000
00000

输出: 1

示例2:

输入:
11000
11000
00100
00011

输出: 3

解法

思想

线性扫描整个二维网格,如果一个结点包含 1,则以其为根结点启动广度优先搜索,或深度优先搜索。搜索到的值设为 0 以标记访问过该结点,每经历过一次搜索说明岛的数量+1。直到整个二维数组都变成0。

代码

不嫌麻烦的可以建一个存储二维数组x、y位置的数据结构类。不然只能存储元素的偏移地址手动算x和y。

class Solution {
    public int numIslands(char[][] grid) {
        int count = 0;
        int height = grid.length;
        if(height==0) return 0;
        int width = grid[0].length;
        Queue<Integer> queue = new LinkedList<Integer>();

        for(int i = 0;i<height;i++){
            for(int j = 0;j<width;j++){
                if(grid[i][j]=='1'){
                    grid[i][j] = '0';
                    queue.offer(i*width+j);
                    while(!queue.isEmpty()){
                        int index = queue.poll();
                        int index_x = index/width;
                        int index_y = index%width;
                        if(index_x!=height-1 && grid[index_x+1][index_y]=='1'){ 
                            queue.offer((index_x+1)*width+index_y);
                            grid[index_x+1][index_y] = '0';
                        }
                        if(index_x!=0 && grid[index_x-1][index_y]=='1'){ 
                            queue.offer((index_x-1)*width+index_y);
                            grid[index_x-1][index_y] = '0';
                        }
                        if(index_y!=0 && grid[index_x][index_y-1]=='1'){ 
                            queue.offer(index_x*width+index_y-1);
                            grid[index_x][index_y-1] = '0';
                        }
                        if(index_y!=width-1 && grid[index_x][index_y+1]=='1'){ 
                            queue.offer(index_x*width+index_y+1);
                            grid[index_x][index_y+1] = '0';
                        }
                    }
                    count++;
                }
            }
        }
        return count;
    }
}

在BFS的基础上改一下就成了DFS:

class Solution {
    public int numIslands(char[][] grid) {
        int count = 0;
        int height = grid.length;
        if(height==0) return 0;
        int width = grid[0].length;
        Stack<Integer> stack = new Stack<>();

        for(int i = 0;i<height;i++){
            for(int j = 0;j<width;j++){
                if(grid[i][j]=='1'){
                    grid[i][j] = '0';
                    stack.push(i*width+j);
                    while(!stack.empty()){
                        int index = stack.peek();
                        int index_x = index/width;
                        int index_y = index%width;
                        if(index_x!=height-1 && grid[index_x+1][index_y]=='1'){ 
                            stack.push((index_x+1)*width+index_y);
                            grid[index_x+1][index_y] = '0';
                            continue;
                        }
                        if(index_x!=0 && grid[index_x-1][index_y]=='1'){ 
                            stack.push((index_x-1)*width+index_y);
                            grid[index_x-1][index_y] = '0';
                            continue;
                        }
                        if(index_y!=0 && grid[index_x][index_y-1]=='1'){ 
                            stack.push(index_x*width+index_y-1);
                            grid[index_x][index_y-1] = '0';
                            continue;
                        }
                        if(index_y!=width-1 && grid[index_x][index_y+1]=='1'){ 
                            stack.push(index_x*width+index_y+1);
                            grid[index_x][index_y+1] = '0';
                            continue;
                        }else{
                            stack.pop();
                        }
                    }
                    count++;
                }
            }
        }
        return count;
    }
}

当然DFS还可以用递归的系统调用栈:(作者:LeetCode)

class Solution {
  void dfs(char[][] grid, int r, int c) {
    int nr = grid.length;
    int nc = grid[0].length;

    if (r < 0 || c < 0 || r >= nr || c >= nc || grid[r][c] == '0') {
      return;
    }

    grid[r][c] = '0';
    dfs(grid, r - 1, c);
    dfs(grid, r + 1, c);
    dfs(grid, r, c - 1);
    dfs(grid, r, c + 1);
  }

  public int numIslands(char[][] grid) {
    if (grid == null || grid.length == 0) {
      return 0;
    }

    int nr = grid.length;
    int nc = grid[0].length;
    int num_islands = 0;
    for (int r = 0; r < nr; ++r) {
      for (int c = 0; c < nc; ++c) {
        if (grid[r][c] == '1') {
          ++num_islands;
          dfs(grid, r, c);
        }
      }
    }

    return num_islands;
  }
}

原创文章,作者:彭晨涛,如若转载,请注明出处:https://www.codetool.top/article/leetcode200-%e5%b2%9b%e5%b1%bf%e6%95%b0%e9%87%8f/

(0)
彭晨涛彭晨涛管理者
上一篇 2019年11月23日
下一篇 2019年11月25日

相关推荐

  • leetcode47-全排列II

    原题 给定一个可包含重复数字的序列,返回所有不重复的全排列。 示例: 输入: [1,1,2] 输出: [ [1,1,2], [1,2,1], [2,1,1] ] 解法 思想 这道题…

    算法 2020年5月10日
    0100
  • leetcode70-爬楼梯

    原题 假设你正在爬楼梯。需要 n 阶你才能到达楼顶。 每次你可以爬 1 或 2 个台阶。你有多少种不同的方法可以爬到楼顶呢? 注意: 给定 n 是一个正整数。  示例 1: 输入:…

    算法 2020年1月21日
    01120
  • 蓝桥杯试题-小数第n位

    原题 资源限制 时间限制:1.0s 内存限制:256.0MB 问题描述   我们知道,整数做除法时,有时得到有限小数,有时得到无限循环小数。  如果我们把有限小数的末尾加上无限多个…

    算法 2020年2月29日
    080
  • leetcode124-二叉树中的最大路径和

    原题 给定一个非空二叉树,返回其最大路径和。 本题中,路径被定义为一条从树中任意节点出发,达到任意节点的序列。该路径至少包含一个节点,且不一定经过根节点。 示例 1: 输入: [1…

    算法 2020年4月26日
    0170
  • leetcode403-青蛙过河

    原题 一只青蛙想要过河。 假定河流被等分为 x 个单元格,并且在每一个单元格内都有可能放有一石子(也有可能没有)。 青蛙可以跳上石头,但是不可以跳入水中。 给定石子的位置列表(用单…

    算法 2020年6月16日
    04810
  • leetcode443-压缩字符串

    原题 给定一组字符,使用原地算法将其压缩。 压缩后的长度必须始终小于或等于原数组长度。 数组的每个元素应该是长度为1 的字符(不是 int 整数类型)。 在完成原地修改输入数组后,…

    算法 2020年5月28日
    070
  • leetcode18-四数之和

    原题 给定一个包含 n 个整数的数组 nums 和一个目标值 target,判断 nums 中是否存在四个元素 a,b,c 和 d ,使得 a + b + c + d 的值与 ta…

    算法 2020年5月5日
    0130
  • leetcode599-两个列表的最小索引总和

    原题 假设Andy和Doris想在晚餐时选择一家餐厅,并且他们都有一个表示最喜爱餐厅的列表,每个餐厅的名字用字符串表示。 你需要帮助他们用最少的索引和找出他们共同喜爱的餐厅。 如果…

    算法 2019年12月22日
    0120
  • leetcode349-两个数组的交集

    原题 给定两个数组,编写一个函数来计算它们的交集。 输入: nums1 = [1,2,2,1], nums2 = [2,2] 输出: [2] 示例2: 输入: nums1 = [4…

    算法 2019年12月14日
    090
  • leetcode707-设计链表

    原题 设计链表的实现。您可以选择使用单链表或双链表。单链表中的节点应该具有两个属性:val 和 next。val 是当前节点的值,next 是指向下一个节点的指针/引用。如果要使用…

    算法 2019年12月14日
    0300

发表回复

登录后才能评论