zoukankan      html  css  js  c++  java
  • Number of Islands——LeetCode

    Given a 2d grid map of '1's (land) and '0's (water), count the number of islands. An island is surrounded by water and is formed by connecting adjacent lands horizontally or vertically. You may assume all four edges of the grid are all surrounded by water.

    Example 1:

    11110
    11010
    11000
    00000

    Answer: 1

    Example 2:

    11000
    11000
    00100
    00011

    Answer: 3

    哈哈,这是今天的新题,十多分钟A了,题目不难,我的做法是BFS,题目大意是1代表岛屿,0代表水,可以假设这个grid周围都是水,岛屿定义是四周都是水,求岛屿的个数。

    我的做法是,从第一个开始,如果是1,并且没有访问过visit为false,那么加入queue里,当queue非空取出来并加入它上下左右的邻居,并且把这些节点visit设置为true,时间复杂度是O(M*N),空间复杂度的话,因为同时在queue里的最多也就4个节点的坐标,所以是O(1)。

    Talk is cheap>>

    public int numIslands(char[][] grid) {
            if (grid == null || grid.length == 0) {
                return 0;
            }
            int rowLen = grid.length;
            int colLen = grid[0].length;
            boolean[][] visited = new boolean[rowLen][colLen];
            int[][] direct = new int[][]{{-1, 0}, {1, 0}, {0, -1}, {0, 1}};
            Deque<Integer> queue = new ArrayDeque<>();
            int res = 0;
            for (int i = 0; i < rowLen; i++) {
                for (int j = 0; j < colLen; j++) {
                    if (!visited[i][j] && grid[i][j] == '1') {
                        res++;
                        queue.add(i * colLen + j);
                        while (!queue.isEmpty()) {
                            int pos = queue.poll();
                            int curr_x = pos / colLen;
                            int curr_y = pos % colLen;
                            if (visited[curr_x][curr_y]) {
                                continue;
                            }
                            visited[curr_x][curr_y] = true;
                            for (int k = 0; k < 4; k++) {
                                int x = curr_x + direct[k][0];
                                int y = curr_y + direct[k][1];
                                if (x >= 0 && y >= 0 && x < rowLen && y < colLen && grid[x][y] == '1') {
                                    queue.add(x * colLen + y);
                                }
                            }
                        }
                    }
                }
            }
            return res;
        }

  • 相关阅读:
    几种 HtmlEncode 的区别
    Javascript 编程风格
    asp.net ckeditor 无法获取值
    Silverlight:Deep Zoom 文件格式概述
    js阻止浏览器的默认行为以及停止事件冒泡(用JQuery实现回车提交,兼容IE、FF浏览器)
    什么是 HTTP Headers?
    ServerVariables
    SQL Server 查询不重复id的数据记录
    因为安全原因,文件不可浏览. 请联系系统管理员并检查CKFinder配置文件
    浏览器鼠标手势原理简析
  • 原文地址:https://www.cnblogs.com/aboutblank/p/4405557.html
Copyright © 2011-2022 走看看