- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
<分区>
我正在编写一个数独谜题生成器,但当我编译和运行该程序时,我看到的只是一个空白的控制台终端。我已经等了 1 小时,但它仍然是一个空白的控制台终端。我想知道它是因为任何逻辑错误还是因为它仍在处理中。请注意,我的整个代码超长。如果它是性能问题,我该如何优化它
谢谢
#include <iostream>
#include <ctime>
#include <cstdlib>
#include <cmath>
using namespace std;
bool checkrow(int row,int value,int array[][9]);
void producearray(int array[][9]);
bool checksquare(int row,int col,int value,int array[][9]);
bool checkcol(int col,int value,int array[][9]);
void populatearray(int array[][9]);
void printarray(int array[][9]);
int main()
{
int array[9][9];
populatearray( array);
producearray(array);
printarray(array);
system("PAUSE");
}
bool checkrow(int row,int value,int array[][9])// checks the entire row, returns false if any two numbers in the row are the same
{
for (int j=0;j<9;j++)
{
if (value==array[row][j])
{
return false;
}
}
return true;
}
bool checkcol(int col,int value,int array[][9]) // check if any two numbers in the same column are the same
{
for (int j=0;j<9;j++)
{
if (value==array[j][col])
{
return false;
}
}
return true;
bool checksquare(int row,int col,int value,int array[][9]) //checks if the number within the same square are the same
{
if ( ( row>=0 && row<=2) && (col>=0 && col<=2) )
{
for (int i=0;i<=2;i++)
{
for (int j=0;j<=2;j++)
{
if (array[i][j]== value)
{
return false;
}
}
}
return true;
}
else if ( ( row>=0 && row<=2) && (col>=3 && col<=5) )
{
for (int i=0;i<=2;i++)
{
for (int j=3;j<=5;j++)
{
if (array[i][j]== value)
{
return false;
}
}
}
return true;
}
else if ( ( row>=0 && row<=2) && (col>=6 && col<=8) )
{
for (int i=0;i<=2;i++)
{
for (int j=6;j<=8;j++)
{
if (array[i][j]== value)
{
return false;
}
}
}
return true;
}
else if ( ( row>=3 && row<=5) && (col>=0 && col<=2) )
{
for (int i=3;i<=5;i++)
{
for (int j=0;j<=2;j++)
{
if (array[i][j]== value)
{
return false;
}
}
}
return true;
}
else if ( ( row>=3 && row<=5) && (col>=3 && col<=5) )
{
for (int i=3;i<=5;i++)
{
for (int j=3;j<=5;j++)
{
if (array[i][j]== value)
{
return false;
}
}
}
return true;
}
else if ( ( row>=3 && row<=5) && (col>=6 && col<=8) )
{
for (int i=3;i<=5;i++)
{
for (int j=6;j<=8;j++)
{
if (array[i][j]== value)
{
return false;
}
}
}
return true;
}
else if ( ( row>=6 && row<=8) && (col>=0 && col<=2) )
{
for (int i=6;i<=8;i++)
{
for (int j=0;j<=2;j++)
{
if (array[i][j]== value)
{
return false;
}
}
}
return true;
}
else if ( ( row>=6 && row<=8) && (col>=3 && col<=5) )
{
for (int i=6;i<=8;i++)
{
for (int j=3;j<=5;j++)
{
if (array[i][j]== value)
{
return false;
}
}
}
return true;
}
else if ( ( row>=6 && row<=8) && (col>=6 && col<=8) )
{
for (int i=6;i<=8;i++)
{
for (int j=6;j<=8;j++)
{
if (array[i][j]== value)
{
return false;
}
}
}
return true;
}
}
void producearray(int array[9][9]) //produces the array
{
bool isrow;
bool iscol;
bool issquare;
for (int i=0;i<9;i++)
{
for (int j=0;j<9;j++)
{
do
{
array[i][j]=rand()%9+1;
isrow=checkrow(i,array[i][j],array);
iscol=checkcol(j,array[i][j],array);
issquare=checksquare(i,j,array[i][j],array);
}
while(isrow==false || iscol==false || issquare==false);
}
}
void populatearray(int array[][9]) // populate the arary
{
for (int i=0;i<9;i++)
{
for (int j=0;j<9;j++)
{
array[i][j]=0;
}
}
}
void printarray(int array[][9]) //prints the array
{
for (int i=0;i<9;i++)
{
for (int j=0;j<9;j++)
{
cout<<array[i][j]
<<"\t";
}
cout<<endl;
}
}
这个问题在这里已经有了答案: With arrays, why is it the case that a[5] == 5[a]? (20 个答案) 关闭 7 年前。 我正在尝试解开这个谜团: in
很难为这个问题找到合适的标题。欢迎编辑! :) 这是我的来源xml代码: [color hex] [color hex] [color he
编辑:看起来像一个索引问题,在问题底部更新 我有以下查询 + 子查询,其结果我无法解释。我从这个最小的输入数据集开始(这里的应用程序正在捕获数据变化,PK 是 id + tx_id)。 mysql>
基本上,我在这里试图实现的是让全局变量具有指向结构的指针数组,其大小在编译时是未知的——在我下面的示例中,它是 my_struct **tab。在最终版本中,我想调用一个 JNI 方法来初始化我的指针
所以我想弄清楚这个谜题: function fun1(){ var result = []; for (var i = 0; i < 5; i++){ result.p
一群 child 围成一圈。选择第一个 child ,他们从那个 child 开始顺时针计数,直到达到固定数字(n,在游戏开始时给出)。当计数达到 n 时,第 n 个位置的 child 被淘汰。游戏从
(我是 JS 新手,所以请耐心等待)我正在使用 table 来构建滑动益智游戏。我需要一个可以扰乱值的函数,但我不确定应该如何让它显示在表格单元格中。现在我的代码只是按顺序显示数字。 我有两个函数 -
我有一个 UserForm,xForm,它在类模块(假设为 TestClass)中实例化为: 'TestClass Dim Form as New xForm Private WithEvents E
如果没有循环或游标,如何获取日期间隔列表并将它们转换为 1 和 0 的字符串,这样: 每一位代表从 min(所有日期)到 max(所有日期)的每一天 如果该天属于任何日期间隔,则该位为 1 如果该天不
我读过很多A*算法的伪代码,但它们都没有真正解释如何输出解。我相信我理解使用优先级队列表示尚未访问的内容和使用已探索的表的概念,但是当我执行该算法时,我不知道在什么时候打印出结果。有没有人有一个伪代码
以下两个查询不会返回相同的结果。为什么? 注意 :我发现这个问题是一个 Mysql 难题,我没有关于这个问题的更多数据? SELECT table1.* FROM table1 LEFT JOIN t
如果您对我应该如何在 python 中执行以下任务有任何建议,我正在徘徊:假设我有以下类(class): class A(object): self._classes = [] def
我很难理解如何在不引起内存分配问题的情况下解决这个问题。我很确定我的逻辑是合理的,但不幸的是,这似乎还不够好。有没有人对此有任何建议,以便我了解如何更有效地编写代码? 问题来了:示例输入:1个5 2
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 8 年前。 Improve
所以这是一个难题: “kb”是扩展 java.util.Hashtable 的类的实例键是一个字符串,存储的值是一个名为“IntelCard”的类 此代码提取 key ,并尝试从表中打印数据
我有以下难题要解决,但我不确定我该怎么做。它说: 有一个 Ubuntu Linux C 程序可以输出变量的地址。 v1: 0xa156128 v2: 0xff97410c v3: 0xf750e34b
我有一个简单的 HTML 页面如下:- Col1 Col2
大家好, 我尝试了八个难题的解决方案发布 here由 joel Neely 玩弄并修改它,以便可以用来解决更高的网格[将网格的字符串表示更改为二维整数表示并修改相应的逻辑]。然而,修改后的代码可以解决
我正在尝试解决下文详述的 projecteuler 难题。我当前的函数适用于数字 1 到 10,但是当我尝试 1 到 20 时,它会一直循环下去而没有结果。 2520 is the smallest
我在为基于图 block 的游戏编写随机关卡生成器时遇到了一个有趣的问题。我已经为它实现了一个强力求解器,但它的速度呈指数级下降,而且绝对不适合我的用例。我不一定要寻找完美的解决方案,我会对性能良好的
我是一名优秀的程序员,十分优秀!