国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

leecode 解題總結(jié):37 Sudoku Solver

2019-11-10 20:20:34
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
#include <iostream>#include <stdio.h>#include <vector>#include <fstream>using namespace std;/*問(wèn)題:Write a PRogram to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character '.'.You may assume that there will be only one unique solution.A sudoku puzzle......and its solution numbers marked in red.分析:這是搜索是否有解的問(wèn)題,廣度優(yōu)先搜索最優(yōu)解,深度優(yōu)先搜索確定是否有解。因此本題應(yīng)該用深度優(yōu)先搜索??搭}目,如果擺放新的元素不成功,應(yīng)該是要回溯的。因此,此題應(yīng)該是回溯來(lái)做。每一次嘗試擺放一個(gè)1~9中的某個(gè)元素,如果擺放不成功,就用另一個(gè)元素替換,如果最終棋盤(pán)擺滿了,就輸出結(jié)果。如何判定沒(méi)有結(jié)果,如果1判斷是否滿足可行解,只需要當(dāng)前board[i][j]元素為c是否在行號(hào),列號(hào),子棋盤(pán)擺放過(guò)	判斷子棋盤(pán)上的9個(gè)元素是否與給定元素重復(fù),先確定 子棋盤(pán)的行號(hào)=行號(hào)	給定位置(row,jcol)計(jì)算對(duì)應(yīng)子棋盤(pán)的行號(hào)(x,y)	x = 3 * (row / 3)	y = 3 * (col / 3)	子棋盤(pán)編號(hào) = 3 *(row / 3) + col /3 = 3 + 2 = 5,行號(hào)確定大的子棋盤(pán)編號(hào),列號(hào)確定小的子棋盤(pán)編號(hào)	子棋盤(pán)元素下標(biāo) = 3 * (col / 3) + col % 3 = 3 * 2 + 8 % 3 = 8,其實(shí)就是將列分成3等份,然后取余數(shù)	比如給定元素(5,8),對(duì)應(yīng)第6子棋盤(pán)中(編號(hào)為5)中第8個(gè)元素	這里由于采用i為0~8,i默認(rèn)為列號(hào)	則新的子棋盤(pán)編號(hào)=board[ 3 * (row / 3) + i / 3 ][3 * (col / 3) + i % 3]	subBoardIndex = 3 * (row / 3) + i / 3;	index = 3 * (col / 3) + i % 3;*/class Solution {public:	bool isValidSudoku(vector<vector<char> > &board , int row  , int col , char c)	{		if(board.empty())		{			return false;		}		int size = board.size();		int subBoardIndex;		int index;		for(int i = 0 ; i < 9 ; i++)		{			if(board[i][col] != '.' && board[i][col] == c)			{				return false;			}			if(board[row][i] != '.' && board[row][i] == c)			{				return false;			}			/*			判斷子棋盤(pán)上的9個(gè)元素是否與給定元素重復(fù),先確定 子棋盤(pán)的行號(hào)=行號(hào)			給定位置(row,jcol)計(jì)算對(duì)應(yīng)子棋盤(pán)的行號(hào)(x,y)			x = 3 * (row / 3)			y = 3 * (col / 3)			子棋盤(pán)編號(hào) = 3 *(row / 3) + col /3 = 3 + 2 = 5,行號(hào)確定大的子棋盤(pán)編號(hào),列號(hào)確定小的子棋盤(pán)編號(hào)			子棋盤(pán)元素下標(biāo) = 3 * (col / 3) + col % 3 = 3 * 2 + 8 % 3 = 8,其實(shí)就是將列分成3等份,然后取余數(shù)			比如給定元素(5,8),對(duì)應(yīng)第6子棋盤(pán)中(編號(hào)為5)中第8個(gè)元素			這里由于采用i為0~9,i默認(rèn)為列號(hào)			則新的子棋盤(pán)編號(hào)=board[ 3 * (row / 3) + i / 3 ][3 * (col / 3) + i % 3]			*/			subBoardIndex = 3 * (row / 3) + i / 3;			index = 3 * (col / 3) + i % 3;			if(board[subBoardIndex][index] != '.' && board[subBoardIndex][index] == c)			{				return false;			}		}		return true;	}	bool isSolved(vector<vector<char>>& board)	{		if(board.empty())		{			return false;		}		int size = board.size();		for(int i = 0 ; i < size ; i++)		{			for(int j = 0 ; j < size ; j++ )			{				if('.' == board.at(i).at(j))				{					//嘗試在空白的區(qū)域處擺放下一個(gè)元素,這里直接用cha					for(char c = '1' ; c <= '9' ; c++)					{						//如果擺放有效,繼續(xù)處理						if(isValidSudoku(board , i , j , c))						{							board.at(i).at(j) = c;							//牛逼,直接用遞歸判斷下一次是否擺放成功							if(isSolved(board))							{								return true;							}							else							{								board.at(i).at(j) = '.';							}						}					}					//如果一直沒(méi)有得到結(jié)果,說(shuō)明無(wú)效					return false;				}			}		}		return true;	}    void solveSudoku(vector<vector<char>>& board) {		if(board.empty())		{			return;		}		bool isSolve = isSolved(board);		_isSolved = isSolve;	}public:	bool _isSolved;};vector<string> readFile(string& fileName){	vector<string> results;	if(fileName.empty())	{		return results;	}	ifstream file(fileName , ios::in);	if(!file)	{		cout << "can't open file" << endl;		return results;	}	const int maxSize = 1024;	char str[maxSize];	while(!file.eof())	{		file.getline(str , maxSize);		string s(str);		results.push_back(s);	}	file.close();	return results;}void print(vector< vector<char> >& board){	if(board.empty())	{		cout << "no result" << endl;	}	int size = board.size();	for(int i = 0 ; i < size ; i++)	{		for(int j = 0 ; j < size ; j++ )		{			cout << board.at(i).at(j);		}		cout << endl;	}}void process(){	vector< vector<char> > board;	string s;	int size;	Solution solution;	board.clear();	vector<string> strs = readFile(string("data.txt"));	int len = strs.size();	for(int i = 0 ; i < len ; i++)	{		s = strs.at(i);		vector<char> str;		size = s.length();		for(int i = 0 ; i < size ; i++)		{			str.push_back(s.at(i));		}		board.push_back(str);	}	solution.solveSudoku(board);	if(solution._isSolved)	{		print(board);	}	else	{		cout << "no" << endl;	}}int main(int argc , char* argv[]){	process();	getchar();	return 0;}
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 龙游县| 阳城县| 尼玛县| 桐乡市| 敦化市| 吴江市| 黑河市| 雅江县| 壤塘县| 乌海市| 老河口市| 江川县| 平南县| 塘沽区| 新乡市| 师宗县| 五峰| 娄底市| 稷山县| 清苑县| 龙泉市| 南开区| 荣成市| 屯门区| 诸城市| 申扎县| 友谊县| 双牌县| 五莲县| 颍上县| 上蔡县| 巴中市| 泾阳县| 依兰县| 广饶县| 平遥县| 荥经县| 陆良县| 福贡县| 电白县| 德江县|