public class Demo07 {
? ?public static void main(String[] args) {
? ? ? ?//1.创建一个二维数组 11*11 0:没有棋子 ? 1:黑棋 ? 2:白棋
? ? ? ?int[][] array1 = new int[11][11];
? ? ? ?array1[1][2] = 1;
? ? ? ?array1[2][2] = 2;
? ? ? ?//输出数组
? ? ? ?for(int[] i : array1){
? ? ? ? ? ?for(int j : i){
? ? ? ? ? ? ? ?System.out.print(j+"\t");
? ? ? ? ? }
? ? ? ? ? ?System.out.println();
? ? ? }
?
? ? ? ?//转换为稀疏数组保存
? ? ? ?//获取有效值得个数
? ? ? ?int num = 0;
? ? ? ?for(int i = 0 ; i < 11 ; i++ ){
? ? ? ? ? ?for(int j = 0 ; j < 11 ; j++ ){
? ? ? ? ? ? ? ?if(array1[i][j] != 0){
? ? ? ? ? ? ? ? ? ?num++;
? ? ? ? ? ? ? }
? ? ? ? ? }
? ? ? }
? ? ? ?System.out.println("有效值个数为:"+num);
?
? ? ? ?//创建一个稀疏数组
? ? ? ?int[][] array2 = new int[1][3];
? ? ? ?array2[0][0] = 11;
? ? ? ?array2[0][1] = 11;
? ? ? ?array2[0][2] = num;
?
? ? ? ?//遍历创建的稀疏数组,非零的值,存放在稀疏数组中
? ? ? ?int count = 0;
? ? ? ?for(int i = 1 ; i < array2.length ; i++ ){
? ? ? ? ? ?for(int j = 0 ; j < array2[i].length ; j++){
? ? ? ? ? ? ? ?if(array2[i][j] != 0){
? ? ? ? ? ? ? ? ? ?count++;
? ? ? ? ? ? ? ? ? ?array2[count][0] = i;
? ? ? ? ? ? ? ? ? ?array2[count][1] = j;
? ? ? ? ? ? ? ? ? ?array2[count][2] = array1[i][j];
? ? ? ? ? ? ? }
? ? ? ? ? }
? ? ? }
?
? ? ? ?//输出稀疏数组
? ? ? ?System.out.println("稀疏数组");
? ? ? ?for(int i = 0 ; i < array2.length ; i++ ){
? ? ? ? ? ?System.out.println(array2[i][0] + "\t"
? ? ? ? ? ? ? ? ? ?+array2[i][1] + "\t"
? ? ? ? ? ? ? ? ? ?+array2[i][2] + "\t");
? ? ? }
?
? ? ? ?//还原
? ? ? ?System.out.println("===================");
? ? ? ?//1.读取稀疏数组
? ? ? ?int[][] array3 = new int[array2[0][0]][array2[0][1]];
?
? ? ? ?//2.给其中的元素还原它的值
? ? ? ?for(int i = 1 ; i < array2.length ; i++){
? ? ? ? ? ?array3[array2[i][0]][array2[i][1]] = array2[i][0];
? ? ? }
?
? ? ? ?//3.打印
? ? ? ?System.out.println("输出还原的数组");
?
? ? ? ?for(int[] i : array1){
? ? ? ? ? ?for(int j : i){
? ? ? ? ? ? ? ?System.out.print(j+"\t");
? ? ? ? ? }
? ? ? ? ? ?System.out.println();
? ? ? }
? }
}
|