gpt4 book ai didi

java - 两个矩阵之间的行相等

转载 作者:行者123 更新时间:2023-12-01 17:50:01 25 4
gpt4 key购买 nike

我需要检查一个矩阵的行是否等于第二个矩阵的行。我尝试了几种不同的方法,但似乎找不到有效的简单方法。

这是我用于测试的文件:

    public static void main(String[] args) {
int[][] a0 = null;
int[][] b0 = null;
int[][] a1 = {};
int[][] b1 = {};
System.out.println(ex1(a0,b0)==false);
System.out.println(ex1(a0,b1)==false);
System.out.println(ex1(a1,b0)==false);
System.out.println(ex1(a1,b1)==false);
int[][] a2 = {{2, 1 , 5}
,{3, 10 , 6}
,{4, 100, 7}};
int[][] b2 = {{4, 7 , 1 }
,{3, 5 , 10 }
,{2, 6 , 100}};
System.out.println(ex1(a2,b2)==true );
int[][] a3 = {{2, 1 , 5}
,{3, 10 , 6}
,{4, 100, 7}};
int[][] b3 = {{4, 1 , 7}
,{3, 10 , 6}
,{2, 0 , 5}};
System.out.println(ex1(a3,b3)==false);
int[][] a4 = {{2, 1 , 5}
,{3, 10 , 6}
,{4, 100, 7}};
int[][] b4 = {{1 , 4 , 7}
,{10, 3 , 6}
,{0 , 2 , 5}};
System.out.println(ex1(a4,b4)==false);
int[][] a5 = {{1 , 2, 5 }
,{10 , 3, 6 }
,{100, 4, 7 }};
int[][] b5 = {{1 , 4, 1 }
,{10 , 3, 10 }
,{0 , 2, 100}};
System.out.println(ex1(a5,b5)==true );
int[][] a6 = {{1 , 2 , 5}
,{10 , 3 , 6}
,{100, 4 , 7}};
int[][] b6 = {{1 , 1 , 7}
,{1 , 10 , 6}
,{0 , 100, 5}};
System.out.println(ex1(a6,b6)==true );
}

}

这是我的代码:

public static boolean ex1(int[][] a, int[][] b){
if(a == null || a.length < 1 || b == null || b.length < 1){
return false;
}
for(int i = 0; i < a.length; i++){
int cont = 0;
for(int j = 0; j < a.length; j++){
for(int z = 0; z < a.length; z++){
if(a[j][i] == b[z][i]){
cont++;
}
if(cont == a[i].length){
return true;
}
}
}
}
return false;
}

这是测试文件的输出,所有内容都应该为真:Output Image

有人可以帮我吗?

最佳答案

您可以简单地使用函数 Arrays.equals(arr1, arr1)。虽然该示例适用于一维数组,但应该适用于二维数组:

import java.util.Arrays;

public class Main {
public static void main(String[] args) throws Exception {
int[] ary = {1,2,3,4,5,6};
int[] ary1 = {1,2,3,4,5,6};
int[] ary2 = {1,2,3,4};
System.out.println("Is array 1 equal to array 2?? " +Arrays.equals(ary, ary1));
System.out.println("Is array 1 equal to array 3?? " +Arrays.equals(ary, ary2));
}
}

输出:

Is array 1 equal to array 2?? true
Is array 1 equal to array 3?? false

关于java - 两个矩阵之间的行相等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51407495/

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