溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

leetCode 36. Valid Sudoku(數(shù)獨(dú)) 哈希

發(fā)布時(shí)間:2020-08-03 01:52:44 來(lái)源:網(wǎng)絡(luò) 閱讀:901 作者:313119992 欄目:編程語(yǔ)言

36. Valid Sudoku(合法數(shù)獨(dú))

Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.

The Sudoku board could be partially filled, where empty cells are filled with the character '.'.

leetCode 36. Valid Sudoku(數(shù)獨(dú)) 哈希

A partially filled sudoku which is valid.


Note:
A valid Sudoku board (partially filled) is not necessarily solvable. Only the filled cells need to be validated.

關(guān)于數(shù)獨(dú)的簡(jiǎn)介:

There are just 3 rules to Sudoku.

1.Each row must have the numbers 1-9 occuring just once.

leetCode 36. Valid Sudoku(數(shù)獨(dú)) 哈希

2.Each column must have the numbers 1-9 occuring just once.

leetCode 36. Valid Sudoku(數(shù)獨(dú)) 哈希

3.And the numbers 1-9 must occur just once in each of the 9 sub-boxes of the grid.

leetCode 36. Valid Sudoku(數(shù)獨(dú)) 哈希

題目大意:

判斷一個(gè)給定的二維數(shù)組是否是一個(gè)合法的數(shù)獨(dú)矩陣。

思路:

采用set這一容器,來(lái)進(jìn)行去重。

1.判斷每一行是否合法。

2.判斷每一列是否合法。

3.判斷每一個(gè)九宮格是否合法。

代碼如下:

class Solution {
public:
    bool isValidSudoku(vector<vector<char>>& board) 
    {
    	set<char> mySet;
    	//1.判斷每一行是否合法
    	for (int row = 0; row < 9; row++)
    	{
    	    //cout<<"檢測(cè)行:"<<row<<endl;
    		for (int column = 0; column < 9; column++)
    		{
    			if (board[row][column] == '.')
    			{
    				continue;
    			}
    			if (mySet.find(board[row][column]) == mySet.end())
    			{
    				mySet.insert(board[row][column]);
    			}
    			else
    			{
    				return false;
    			}
    		}
    		mySet.clear();
    	}
    	
    	//2.判斷每一列是否合法
    	for (int row = 0; row < 9; row++)
    	{
    	    //cout<<"檢測(cè)列:"<<row<<endl;
    		for (int column = 0; column < 9; column++)
    		{
    			if (board[column][row] == '.')
    			{
    				continue;
    			}
    			if (mySet.find(board[column][row]) == mySet.end())
    			{
    				mySet.insert(board[column][row]);
    			}
    			else
    			{
    				return false;
    			}
    		}
    		mySet.clear();
    	}
    
    	//3.判斷每一個(gè)九宮格是否合法
    	for (int row = 0; row < 9; row += 3)
    	{
    		for (int column = 0; column < 9; column += 3)
    		{
    			for (int i = row; i < row + 3; i++)
    			{
    				for (int j = column; j < column + 3; j++)
    				{
    					if (board[i][j] == '.')
    					{
    						continue;
    					}
    					if (mySet.find(board[i][j]) == mySet.end())
    					{
    						mySet.insert(board[i][j]);
    					}
    					else
    					{
    						return false;
    					}
    				}
    			}
    			mySet.clear();
    		}
    	}
    	return true;
    }
};

2016-08-13 12:21:54

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI