程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 回溯法求解數獨(C++實現)

回溯法求解數獨(C++實現)

編輯:C++入門知識

[cpp]
#include <iostream> 
#include <algorithm> 
using namespace std; 
int map[9][9]; 
bool isPlace(int count){ 
    int row = count / 9; 
    int col = count % 9; 
    int j; 
    //同一行 
    for(j = 0; j < 9; ++j){ 
        if(map[row][j] == map[row][col] && j != col){ 
            return false; 
        } 
    } 
    //同一列 
    for(j = 0; j < 9; ++j){ 
        if(map[j][col] == map[row][col] && j != row){ 
            return false; 
        } 
    } 
    //同一小格 
    int tempRow = row / 3 * 3; 
    int tempCol = col / 3 * 3; 
    for(j = tempRow; j < tempRow + 3;++j){ 
        for(int k = tempCol; k < tempCol + 3; ++k){ 
            if(map[j][k] == map[row][col] && j != row && k != col){ 
                return false; 
            } 
        } 
    } 
    return true; 

void backtrace(int count){ 
    if(count == 81){ 
        cout<<"結果:"<<endl; 
        for(int i = 0; i < 9; ++i){ 
            for(int j =  0; j < 9; ++j){ 
                cout<<map[i][j]<<" "; 
            } 
            cout<<endl; 
        } 
        return; 
    } 
    int row = count / 9; 
    int col = count % 9; 
    if(map[row][col] == 0){ 
        for(int i = 1; i <= 9; ++i){ 
            map[row][col] = i;//賦值 www.2cto.com  
            if(isPlace(count)){//可以放 
                backtrace(count+1);//進入下一層 
            } 
        } 
        map[row][col] = 0;//回溯 
    }else{ 
        backtrace(count+1); 
    } 

int main() 

    for(int i = 0; i < 9; ++i){ 
        for(int j = 0; j < 9; ++j){ 
            cin>>map[i][j]; 
        } 
    } 
    backtrace(0); 
    return 0; 

測試數據:

[plain]
8 0 0 0 0 0 0 0 1 
9 0 0 0 2 0 0 0 3 
0 3 0 0 5 0 0 7 0 
0 0 5 0 0 0 4 0 0  
0 0 4 5 0 9 6 0 0 
0 0 0 8 0 1 0 0 0  
0 0 0 0 0 0 0 0 0 
0 4 6 0 0 0 8 2 0 
0 2 0 3 0 5 0 9 0 
運行結果:


\



摘自 #include<cannel_2020>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved