我这里有4x4字符数组,我需要得到数组边缘的字符的公共值...我尝试了与我的问题类似的其他问题的解决方案,但我仍然得到相同的错误。,
这是我的代码..
//arr2[][]
// arr2[3][0] = 'H';
// arr2[3][1] = 'E';
// arr2[3][2] = 'L';
// arr2[3][3] = 'P';
//arr3[][]
// arr3[1][3] = 'T';
// arr3[2][3] = 'O';
// arr3[3][3] = 'P';
//I specifically need the get the 'P' at [3][3]..
for(o = 0;o<count;o++){
char letter = out.charAt(o);
for(int m = 0; m < 4; m ++){
for(int n = 0; n < 4; n ++){
if(Arrays.asList(arr3[m][n]).contains(letter)){
r = m;
c = n;
}
}
}
right = arr2[r][c+1];
left = arr2[r][c-1];
up = arr2[r-1][c];
down = arr2[r+1][c];
if(o==0){
if(c==0){
if(r==0||r==3){
if(right!=null){
l = right;
}
}else{
if(right!=null){
l = right;
}else if(up!=null){
l = up;
}
}
}else if(c==3){
if(r==0||r==3){
if(left!=null){
l = left;
}
}else{
if(left!=null){
l = left;
}else if(up!=null){
l = up;
}
}
}else{
if(r==0||r==3){
if(left!=null){
l = left;
}else if(right!=null){
l = right;
}
}else{
if(left!=null){
l = left;
}else if(right!=null){
l = right;
}else if(up!=null){
l = up;
}
}
}
}
}else if(o==(count-1)){
if(vertical == 1){
if(c==0){
if(r==0||r==3){
if(right!=null){
l = right;
}
}else{
if(right!=null){
l = right;
}else if(down!=null){
l = down;
}
}
}else if(c==3){
if(r==0||r==3){
if(left!=null){
l = left;
}
}else{
if(left!=null){
l = left;
}else if(down!=null){
l = down;
}
}
}else{
if(r==0||r==3){
if(left!=null){
l = left;
}else if(right!=null){
l = right;
}
}else{
if(left!=null){
l = left;
}else if(right!=null){
l = right;
}else if(down!=null){
l = down;
}
}
}
}
}else{
if(vertical == 1){
if(c==0){
if(right!=null){
l = right;
}
}else if(c==3){
if(left!=null){
l = left;
}
}else{
if(right!=null){
l = right;
}else if(left!=null){
l = left;
}
}
}
}
k = Character.toString(letter);
letr = Character.toString(l);
答案 0 :(得分:0)
你可以运行这个并告诉我们它是否有帮助吗?
char[][] arr2 = ... // your array
char[][] arr3 = ... // your other array
// inspect all common indeces:
for (int i = 0; i < arr2.length && i < arr3.length; i++) {
for (int j = 0; j < arr2[i].length && j < arr3[i].length; j++) {
// print value, if value is the same:
if (arr2[i][j] == arr3[i][j]) {
// here you know that two characters on the same index are the same.
// you have the information about the character and the indeces:
System.out.println("Found common value at index (i,j)->"
+ "(" + i + "," + j + "), char '" + arr2[i][j] + "'");
}
}
}
使用类似于注释示例中的数组,这将提供以下输出:
Found common value at index (i,j)->(3,3), char 'P'
这似乎是你正在寻找的。假设两个阵列具有相同的维度,此解决方案将查看两个阵列中的每个索引。如果一个数组比另一个数组大,则只查看公共索引。你提到了关于数组边缘的一些东西。我不清楚,如果你的意思是只有边或包括边。这个答案包括边缘。如果您只需要查看边缘,请随时在答案下面留下评论。
答案 1 :(得分:0)
在您的代码中,
for(int m = 0; m < 4; m ++){
for(int n = 0; n < 4; n ++){
if(Arrays.asList(arr3[m][n]).contains(letter)){
r = m;
c = n;
}
}
}
在这里,您要分配r和c,在某些情况下可能是0
或3
,然后是您的代码,
right = arr2[r][c+1];
left = arr2[r][c-1];
up = arr2[r-1][c];
down = arr2[r+1][c];
在上述作业中,您正在使用c + 1
,r + 1
,c - 1
,r - 1
如果上一个循环指定了r和c,则肯定会超出范围0或3。
答案 2 :(得分:0)
感谢那些帮我解决这个问题的人。 我能够使用modulo获取数组边缘的值。我能够防止越界... https://stackoverflow.com/a/12743834/2078012 这个链接从另一个问题回答了我的问题.. 再次感谢你..: - )