130. Surrounded Regions

栏目: Java · 发布时间: 6年前

内容简介:Given a 2D board containing 'X' and 'O' (the letter O), capture all regions surrounded by 'X'.A region is captured by flipping all 'O's into 'X's in that surrounded region.Example:

Given a 2D board containing 'X' and 'O' (the letter O), capture all regions surrounded by 'X'.

A region is captured by flipping all 'O's into 'X's in that surrounded region.

Example:

X X X X
X O O X
X X O X
X O X X
After running your function, the board should be:
X X X X
X X X X
X X X X
X O X X

Explanation:

Surrounded regions shouldn’t be on the border, which means that any 'O' on the border of the board are not flipped to 'X'. Any 'O' that is not on the border and it is not connected to an 'O' on the border will be flipped to 'X'. Two cells are connected if they are adjacent cells connected horizontally or vertically.

难度:medium

题目:给定由X和O组成的二维表格,找出所有由X包含的区域并将O转成X.

思路:遍历二维表格四边将以0开始的元素延伸到整个二维表并将其值置成非X非O(如B)字符用以区分与其它元素。然后遍历整个二维表将除B以外的所有元素设为X, B元素恢复为O

Runtime: 4 ms, faster than 96.33% of Java online submissions for Surrounded Regions.

Memory Usage: 40.7 MB, less than 100.00% of Java online submissions for Surrounded Regions.

class Solution {
    public void solve(char[][] board) {
        if (null == board || board.length <= 1 || board[0].length <= 1) {
            return;
        }
        
        int m = board.length, n = board[0].length;
        for (int i: Arrays.asList(0, m - 1)) {
            for (int j = 0; j < n; j++) {
                if (board[i][j] == 'O') {
                    color(board, i, j);
                }
            }
        }
        for (int i: Arrays.asList(0, n - 1)) {
            for (int j = 0; j < m; j++) {
                if (board[j][i] == 'O') {
                    color(board, j, i);
                }
            }
        }
        
        for (int i = 0; i < m; i++) {
            for (int j = 0; j < n; j++) {
                if (board[i][j] == 'O' || board[i][j] == 'X') {
                    board[i][j] = 'X';
                } else {
                    board[i][j] = 'O';
                }
            }
        }
    }
    
    private void color(char[][] board, int i, int j) {
        if (i < 0 || i >= board.length 
            || j < 0 || j >= board[i].length 
            || board[i][j] != 'O') {
            return;
        }
        
        board[i][j] = 'B';
        color(board, i + 1, j);
        color(board, i - 1, j);
        color(board, i, j + 1);
        color(board, i, j - 1);
    }
}

以上所述就是小编给大家介绍的《130. Surrounded Regions》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

企业应用架构模式

企业应用架构模式

Martin Fowler / 王怀民、周斌 / 机械工业出版社 / 2010-4 / 59.00元

《企业应用架构模式》作者是当今面向对象软件开发的权威,他在一组专家级合作者的帮助下,将40多种经常出现的解决方案转化成模式,最终写成这本能够应用于任何一种企业应用平台的、关于解决方案的、不可或缺的手册。《企业应用架构模式》获得了2003年度美国软件开发杂志图书类的生产效率奖和读者选择奖。《企业应用架构模式》分为两大部分。第一部分是关于如何开发企业应用的简单介绍。第二部分是《企业应用架构模式》的主体......一起来看看 《企业应用架构模式》 这本书的介绍吧!

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具