博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetCode 36. Valid Sudoku(数独) 哈希
阅读量:6306 次
发布时间:2019-06-22

本文共 2039 字,大约阅读时间需要 6 分钟。

36. Valid Sudoku(合法数独)

Determine if a Sudoku is valid, according to: .

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

250px-Sudoku-by-L2G-20050714.svg.png

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.

horizontal.jpg

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

vertical.jpg

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

square.jpg

题目大意:

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

思路:

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

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

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

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

代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
;
    
}
};
本文转自313119992 51CTO博客,原文链接:http://blog.51cto.com/qiaopeng688/1837537

转载地址:http://dusxa.baihongyu.com/

你可能感兴趣的文章
http2-head compression
查看>>
C# 命名空间
查看>>
订餐系统之同步美团商家订单
查看>>
使用ArrayList时设置初始容量的重要性
查看>>
Java Web-----JSP与Servlet(一)
查看>>
Maven搭建SpringMVC+Mybatis项目详解
查看>>
关于量子理论:最初无意的简化,和一些人有意的强化和放大
查看>>
CentOS 6.9通过RPM安装EPEL源(http://dl.fedoraproject.org)
查看>>
“区块链”并没有什么特别之处
查看>>
没有功能需求设计文档?对不起,拒绝开发!
查看>>
4星|《先发影响力》:影响与反影响相关的有趣的心理学研究综述
查看>>
IE8调用window.open导出EXCEL文件题目
查看>>
python之 列表常用方法
查看>>
vue-cli脚手架的搭建
查看>>
在网页中加入百度搜索框实例代码
查看>>
在Flex中动态设置icon属性
查看>>
采集音频和摄像头视频并实时H264编码及AAC编码
查看>>
3星|《三联生活周刊》2017年39期:英国皇家助产士学会于2017年5月悄悄修改了政策,不再鼓励孕妇自然分娩了...
查看>>
linux查看命令是由哪个软件包提供的
查看>>
高级Linux工程师常用软件清单
查看>>