所以我正在编写一个带有2D数组的代码,就像一个方形表一样排列10比10。它充满了X和Os以及空白。输入一个阈值,如果X或O周围的索引百分比也是X或Os大于阈值那么该点就满足了,如果不满意的话。
然后我必须将不满意的X和Os移动到空白点并重复直到整个板满意或超过指定的轮数。我写了整篇文章,但是当我试图调用moveAllUnsatisfied时,我得到254:错误返回语句。
我以为我可以调用moveAllUnsatisfied,它会改变我的数组。我该怎么回?或者这是完全错误的,我应该如何重做它?
我为这段代码的长度和丑陋道歉,我知道它可能会做得更好
public class CellSim{
public static void main(String[] args){
System.out.println("what is the size of your grid?");
char [][] tissue = new char [IO.readInt()][IO.readInt()];
System.out.println("How many like agents are needed to be satisfied?");
int threshold = IO.readInt();
System.out.println("How many rounds to try and satisfy the board?");
int maxRounds = IO.readInt();
System.out.println("How often do you want to see the board?");
int frequency = IO.readInt();
System.out.println("Percentage of X cells?");
int xCells = IO.readInt();
System.out.println("Percentage of blank cells?");
int bCells = IO.readInt();
int roundsDone = 0;
assignCellTypes(tissue, bCells, xCells);
printTissue(tissue);
System.out.println();
boolean boardSat = true;
boardSat = boardSatisfied(tissue, threshold);
if( boardSat == false){
while(roundsDone <= maxRounds || boardSat == false){
moveAllUnsatisfied(tissue, threshold);
roundsDone++;
boardSat = boardSatisfied(tissue, threshold);
while(roundsDone == frequency || roundsDone == frequency * 2){
System.out.println();
printTissue(tissue);
frequency = frequency * 2;
}
}
}
if( boardSat == true){
printTissue(tissue);}
}
public static void printTissue(char[][] tissue){
for(int row = 0;row < tissue.length;row++){
for(int col = 0;col < tissue[row].length;col++){
System.out.print(tissue[row][col] + "\t");
}
System.out.println();
}
}
public static void assignCellTypes(char[][] tissue, int percentBlank, int percentX){
int n = (tissue.length) * (tissue.length);
percentBlank = (int) Math.ceil(n * (percentBlank * .01));
percentX = (int) Math.ceil((n - percentBlank) * (percentX * .01));
int percentO = (int) Math.ceil(n - percentBlank - percentX);
for( int i = 0; i < percentBlank; i++){
while(percentBlank > 0){
int randCell = randInt(0, 9);
int randCell2 = randInt(0, 9);
if(tissue[randCell][randCell2] == '\u0000'){
tissue[randCell][randCell2] = ' ';
break;
}
}
}
for( int i = 0; i < percentX; i++){
while(percentX > 0){
int randCell = randInt(0, 9);
int randCell2 = randInt(0, 9);
if(tissue[randCell][randCell2] == '\u0000'){
tissue[randCell][randCell2] = 'X';
break;
}
}
}
for( int i = 0; i < percentO; i++){
while(percentO > 0){
int randCell = randInt(0, 9);
int randCell2 = randInt(0, 9);
if(tissue[randCell][randCell2] == '\u0000'){
tissue[randCell][randCell2] = 'O';
break;
}
}
}
}
public static boolean isSatisfied(char[][] tissue, int row, int col, int threshold){
int total = 0;
int same = 0;
if(tissue[row][col] == 'X'){
total = 0;
if(col-1 >= 0 && row+1 < tissue.length && tissue[row + 1][col - 1] == 'X'){
same ++;
total ++;
}else if(col-1 >= 0 && row+1 < tissue.length && tissue[row + 1][col - 1] == 'O')
total ++;
if(row+1 < tissue.length && tissue[row + 1][col] == 'X'){
same ++;
total ++;
}else if(row+1 < tissue.length && tissue[row + 1][col] == 'O')
total ++;
if(row+1 < tissue.length && col+1 < tissue[row+1].length && tissue[row + 1][col + 1] == 'X'){
same ++;
total ++;
}else if(row+1 < tissue.length && col+1 < tissue[row+1].length && tissue[row + 1][col + 1] == 'O')
total ++;
if(col-1 >= 0 && tissue[row][col - 1] == 'X'){
same ++;
total ++;
}else if(col-1 >= 0 && tissue[row][col - 1] == 'O')
total ++;
if(col+1 < tissue[row].length && tissue[row][col + 1] == 'X'){
same ++;
total ++;
}else if(col+1 < tissue[row].length && tissue[row][col + 1] == 'O')
total ++;
if(row-1 >= 0 && col-1 >= 0 && tissue[row - 1][col - 1] == 'X'){
same ++;
total ++;
}else if(row-1 >= 0 && col-1 >= 0 && tissue[row - 1][col - 1] == 'O')
total ++;
if(row-1 >= 0 && tissue[row - 1][col] == 'X'){
same ++;
total ++;
}else if(row-1 >= 0 && tissue[row - 1][col] == 'O')
total ++;
if(row-1 >= 0 && col+1 < tissue[row-1].length && tissue[row - 1][col + 1] == 'X'){
same ++;
total ++;
}else if(row-1 >= 0 && col+1 < tissue[row-1].length && tissue[row - 1][col + 1] == 'O')
total ++;
}
if(tissue[row][col] == 'O'){
total = 0;
if(col-1 >= 0 && row+1 < tissue.length && tissue[row + 1][col - 1] == 'O'){
same ++;
total ++;
}else if(col-1 >= 0 && row+1 < tissue.length && tissue[row + 1][col - 1] == 'X')
total ++;
if(row+1 < tissue.length && tissue[row + 1][col] == 'O'){
same ++;
total ++;
}else if(row+1 < tissue.length && tissue[row + 1][col] == 'X')
total ++;
if(row+1 < tissue.length && col+1 < tissue[row+1].length && tissue[row + 1][col + 1] == 'O'){
same ++;
total ++;
}else if(row+1 < tissue.length && col+1 < tissue[row+1].length && tissue[row + 1][col + 1] == 'X')
total ++;
if(col-1 >= 0 && tissue[row][col - 1] == 'O'){
same ++;
total ++;
}else if(col-1 >= 0 && tissue[row][col - 1] == 'X')
total ++;
if(col+1 < tissue[row].length && tissue[row][col + 1] == 'O'){
same ++;
total ++;
}else if(col+1 < tissue[row].length && tissue[row][col + 1] == 'X')
total ++;
if(row-1 >= 0 && col-1 >= 0 && tissue[row - 1][col - 1] == 'O'){
same ++;
total ++;
}else if(row-1 >= 0 && col-1 >= 0 && tissue[row - 1][col - 1] == 'X')
total ++;
if(row-1 >= 0 && tissue[row - 1][col] == 'O'){
same ++;
total ++;
}else if(row-1 >= 0 && tissue[row - 1][col] == 'X')
total ++;
if(row-1 >= 0 && col+1 < tissue[row-1].length && tissue[row - 1][col + 1] == 'O'){
same ++;
total ++;
}else if(row-1 >= 0 && col+1 < tissue[row-1].length && tissue[row - 1][col + 1] == 'X')
total ++;
}
if(tissue[row][col] == ' '){
return true;
}if(total == 0){
return false;
}else if(((same / total) * 100) >= threshold){
return true;
}else{ return false;}
}
public static boolean boardSatisfied(char[][] tissue, int threshold){
boolean isSat = false;
boolean bSat = true;
for(int row = 0;row < tissue.length;row++){
for(int col = 0;col < tissue[row].length;col++){
if(tissue[row][col] == 'X'){
isSat = isSatisfied(tissue, row, col, threshold);
if(isSat == false){
tissue[row][col] = 'U';
bSat = false;
}
}
if(tissue[row][col] == 'O'){
isSat = isSatisfied(tissue, row, col, threshold);
if(isSat == false){
tissue[row][col] = 'Q';
bSat = false;
}
}
}
}
if(bSat == false){
return false;
}else{return true;}
}
public static int moveAllUnsatisfied(char[][] tissue, int threshold){
for(int row = 0;row < tissue.length;row++){
for(int col = 0;col < tissue[row].length;col++){
if(tissue[row][col] == 'U'){
tissue[row][col]= ' ';
int ranCell = randInt(0, 9);
int ranCell2 = randInt(0, 9);
while(tissue[ranCell][ranCell2] == 'X' || tissue[ranCell][ranCell2] == 'O' || tissue[ranCell][ranCell2] == ' '){
ranCell = randInt(0, 9);
ranCell2 = randInt(0, 9);
if(tissue[ranCell][ranCell2] == ' '){
tissue[ranCell][ranCell2] = 'X';
break;
}
}
}
if(tissue[row][col] == 'Q'){
tissue[row][col]= ' ';
int ranCell = randInt(0, 9);
int ranCell2 = randInt(0, 9);
while(tissue[ranCell][ranCell2] == 'X' || tissue[ranCell][ranCell2] == 'O' || tissue[ranCell][ranCell2] == ' '){
ranCell = randInt(0, 9);
ranCell2 = randInt(0, 9);
if(tissue[ranCell][ranCell2] == ' '){
tissue[ranCell][ranCell2] = 'X';
break;
}
}
}
}
}
}
public static int randInt(int min, int max){
int range = (max - min) + 1;
return(int)(Math.random() * range) + min;
}
}
答案 0 :(得分:1)
就像在“public static int randInt”中一样,你应该返回一个int。 你可以添加“return 0;” 或者您可以将签名更改为“public static void moveAllUnsatisfied”。