码迷,mamicode.com
首页 > 其他好文 > 详细

leetCode 36. Valid Sudoku(数独) 哈希

时间:2016-08-13 14:15:58      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:hash table

36. Valid Sudoku(合法数独)

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 ‘.‘.

技术分享

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.

关于数独的简介:

There are just 3 rules to Sudoku.

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

技术分享

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

技术分享

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

技术分享

题目大意:

判断一个给定的二维数组是否是一个合法的数独矩阵。

思路:

采用set这一容器,来进行去重。

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

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

3.判断每一个九宫格是否合法。

代码如下:

class Solution {
public:
    bool isValidSudoku(vector<vector<char>>& board) 
    {
    	set<char> mySet;
    	//1.判断每一行是否合法
    	for (int row = 0; row < 9; row++)
    	{
    	    //cout<<"检测行:"<<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<<"检测列:"<<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.判断每一个九宫格是否合法
    	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

本文出自 “做最好的自己” 博客,请务必保留此出处http://qiaopeng688.blog.51cto.com/3572484/1837537

leetCode 36. Valid Sudoku(数独) 哈希

标签:hash table

原文地址:http://qiaopeng688.blog.51cto.com/3572484/1837537

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!