Java、相同的数组

        如果两个二维数组m1和m2具有相同的内容,则它们是相同的。编写一个方法,如果m1和m2相同的话,返回true。使用下面的方法头:
        public static boolean equals(int[][] m1, int[][] m2)
        编写一个测试程序,提示用户输入两个3*3的整数数组,显示两个矩阵是否相同。


package pack2;

import java.util.Arrays;
import java.util.Scanner;

public class SameArrays {

	public static void main(String[] args) {
		sameArrays();
	}

	public static void sameArrays() {
		try(Scanner input = new Scanner(System.in);) {
			System.out.print("Enter the size of two arrays for the length " + 
                     "of row and column: ");
			int size = input.nextInt();
			
			int[][] list1 = new int[size][size];
			int[][] list2 = new int[size][size];
			
			System.out.print("Enter list1: ");
			inputData(input, list1);
			System.out.print("Enter list2: ");
			inputData(input, list2);
			
			System.out.println("The two arrays are " + (equals(list1, list2) ? "" :
                          "not ") + "identical");
		}
	}
	
	/**接收数据输入*/
	public static void inputData(Scanner input, int[][] m) {
		for (int i = 0; i < m.length; i++) 
			for (int j = 0; j < m[i].length; j++) 
				m[i][j] = input.nextInt();
	}
	
	/**两个数组是否严格相同?*/
	public static boolean equals(int[][] m1, int[][] m2) {
		int[] temp1 = new int[m1.length * m1.length];	//m1的临时数组
		int[] temp2 = new int[m2.length * m2.length];	//m2的临时数组
		
		for (int i = 0, k = 0; i < m1.length; i++) //循环将m1、m2赋给temp1、temp2
			for (int j = 0; j < m1[i].length; j++) {	//由二维转换为一维
				temp1[k] = m1[i][j];
				temp2[k++] = m2[i][j];
				
			}
		
		Arrays.sort(temp1);	//临时数组排序
		Arrays.sort(temp2);
		
			//调用Arrays方法
		return Arrays.equals(temp1, temp2);
	}
}

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值