zoukankan      html  css  js  c++  java
  • Max Area of Island

    Given a non-empty 2D array grid of 0's and 1's, an island is a group of 1's (representing land) connected 4-directionally (horizontal or vertical.) You may assume all four edges of the grid are surrounded by water.

    Find the maximum area of an island in the given 2D array. (If there is no island, the maximum area is 0.)

    Example 1:

    [[0,0,1,0,0,0,0,1,0,0,0,0,0],
     [0,0,0,0,0,0,0,1,1,1,0,0,0],
     [0,1,1,0,1,0,0,0,0,0,0,0,0],
     [0,1,0,0,1,1,0,0,1,0,1,0,0],
     [0,1,0,0,1,1,0,0,1,1,1,0,0],
     [0,0,0,0,0,0,0,0,0,0,1,0,0],
     [0,0,0,0,0,0,0,1,1,1,0,0,0],
     [0,0,0,0,0,0,0,1,1,0,0,0,0]]
    
    

    Given the above grid, return

    6
    

    . Note the answer is not 11, because the island must be connected 4-directionally.

    Example 2:

    [[0,0,0,0,0,0,0,0]]
    

    Given the above grid, return 0.

    Note: The length of each dimension in the given grid does not exceed 50.

    class Solution {
        public int maxAreaOfIsland(int[][] grid) {
            int max = 0;
            for (int i = 0; i < grid.length; i++) {
    			int[] js = grid[i];
    			for (int j = 0; j < js.length; j++) {
    				max = Math.max(max, island(grid, i, j));
    			}
    		}
            return max;
        }
        
        private static int island(int[][] grid,int x,int y){
    		if(x<0 || x>=grid.length || y<0 || y>=grid[x].length){
    			return 0;
    		}
    		int area = 0;
    		if(grid[x][y] == 1){
    			area=1;
    		}else{
    			return 0;
    		}
    		grid[x][y] = 0;
    		area += island(grid, x, y-1)+island(grid, x-1, y)+island(grid, x, y+1)+island(grid, x+1, y);
    		return area;
    	}
    }
    
  • 相关阅读:
    module 和 component 的区别
    API、SDK、DLL有什么用?
    app基本控件
    PaaS是什么?
    js回调函数(callback)(转载)
    多语言 SEO
    axure rp 8.0
    整天看用户埋点数据,知道数据是咋来的吗?
    发现恶意ip大量访问 可使用命令进行封禁
    阿里云服务器迁移更改IP,导致网站挂掉
  • 原文地址:https://www.cnblogs.com/luozhiyun/p/8336404.html
Copyright © 2011-2022 走看看