battleships-in-a-board
Posted 笨鸟居士的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了battleships-in-a-board相关的知识,希望对你有一定的参考价值。
https://leetcode.com/problems/battleships-in-a-board/ // 采用的是排除法,看船的最后一个节点 public class Solution { public int countBattleships(char[][] board) { int rows = board.length; int cols = rows > 0 ? board[0].length : 0; if (rows == 0 || cols == 0) { return 0; } int ret = 0; for (int i=0; i<rows; i++) { for (int j=0; j<cols; j++) { if (board[i][j] == ‘X‘) { if ((i+1>=rows || board[i+1][j]==‘.‘) && (j+1>=cols || board[i][j+1]==‘.‘)) { ret++; } } } } return ret; } }
以上是关于battleships-in-a-board的主要内容,如果未能解决你的问题,请参考以下文章