gpt4 book ai didi

c# - 在 C# 中实现数独解算器

转载 作者:行者123 更新时间:2023-11-28 07:29:55 25 4
gpt4 key购买 nike

<分区>

我用 C++ 创建了一个数独解算器。但是我需要一个 GUI。因为我不熟悉 VC++,所以我不能用它创建 GUI,而是用 c# 创建它。我已经了解了 C# 的基础知识,但需要先行一步。如果我创建一个 Windows 窗体应用程序并在窗体中创建一个数据 GridView ,我应该如何在网格中实现功能。下面是我的 C++ 代码。

#include<iostream.h>
#include<conio.h>




int a[9][9],b[9][9];

int inputvalue(int x, int y, int value)
{
for(int i = 0; i < 9; i++)
{
if(value == b[x][i] || value == b[i][y])
return 0;
}

for (i = (x / 3) * 3; i <= ((x / 3) * 3) + 2; i++)
for (int j = (y / 3) * 3; j <= ((y / 3) * 3) + 2; j++)
if(b[i][j] == value)
return 0;
return value;
}

int solve(int x, int y)
{
int temp;
if(b[x][y] == 0)
{
for(int i = 1;i < 10; i++)
{
temp = inputvalue(x, y, i);
if(temp > 0)
{
b[x][y] = temp;
if (x == 8 && y == 8)
return 1;
else if (x == 8)
{
if (solve(0, y + 1))
return 1;
}
else
{
if (solve(x + 1, y))
return 1;
}
}
}
if (i == 10)
{
if (b[x][y] != a[x][y])
b[x][y] = 0;
return 0;
}
}
if (x == 8 && y == 8)
return 1;
else if (x == 8)
{
if (solve(0, y + 1))
return 1;
}
else
{
if (solve(x + 1, y))
return 1;
}
}



void main()
{
clrscr();
for(int i = 0;i < 9;i++)
for(int j = 0;j < 9;j++)
{
gotoxy(i + 1,j + 1);
cin >> a[i][j];
}
for(i = 0;i < 9;i++)
for(j = 0;j < 9;j++)
b[i][j] = a[i][j];
if(solve(0,0))
{
for(i = 0;i < 9;i++)
for(j = 0;j < 9;j++)
{
gotoxy(i + 1,j + 1);
cout << b[i][j];
}
}
else
cout<<"no solution";
getch();
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com