稀疏数组

稀疏数组

在这里插入图片描述

在这里插入图片描述

实例

package com.yang.array;

public class ArrayDemo06 {
    public static void main(String[] args) {
        //创建一个11行11列的数组,其中 1:黑棋 2:白旗
        int array1[][] = new int[11][11];
        array1[1][2] = 1;
        array1[2][3] = 2;
        array1[5][6] = 52;
        array1[4][5] = 4;
        //输出原始数组
        System.out.println("输出原始数组");
        for (int[] ints : array1) {
            for (int anInt : ints) {
                System.out.print(anInt+"\t");
            }
            System.out.println();
        }
        System.out.println("===========================");
        //转换为稀疏数组保存
        //算出有效个数
        int sum =0;
        for (int i = 0; i <11 ; i++) {
            for (int j = 0; j <11 ; j++) {
               if (array1[i][j]!=0){
                   sum++;
               }


            }
        }
        System.out.println("有效个数的值为:"+sum);
        //创建一个稀疏数组
        int [][] array2 = new int[sum+1][3];
        array2[0][0]=11;
        array2[0][1]=11;

        array2[0][2]=sum;
        //遍历原数组,将非零的值存放稀疏数组中
        int count = 0;
        for (int i = 0; i <array1.length ; i++) {
            for (int j = 0; j <array1[i].length ; j++) {
               if (array1[i][j]!=0){
                   count++;
                   array2[count][0]=i;
                   System.out.println("遍历原数组--->"+count+"-0:"+i);
                   array2[count][1]=j;
                   System.out.println("遍历原数组--->"+count+"-1:"+j);
                   array2[count][2]=array1[i][j];
                   System.out.println("遍历原数组--->"+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");
        }
        //还原稀疏数组
        //读取稀疏数组
        int array3[][] = new int[array2[0][0]][array2[0][1]];
        //给其中的元素还原它的值
        for (int i = 1; i <array2.length ; i++) {
            array3[array2[i][0]][array2[i][1]]=array2[i][2];
        }
        for (int[] ints : array3) {
            for (int anInt : ints) {
                System.out.print(anInt+"\t");
            }
            System.out.println();

        }
    }

}

结果

0	0	0	0	0	0	0	0	0	0	0	
0	0	1	0	0	0	0	0	0	0	0	
0	0	0	2	0	0	0	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
0	0	0	0	0	4	0	0	0	0	0	
0	0	0	0	0	0	52	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
===========================
有效个数的值为:4
遍历原数组--->1-0:1
遍历原数组--->1-1:2
遍历原数组--->1-2:1
遍历原数组--->2-0:2
遍历原数组--->2-1:3
遍历原数组--->2-2:2
遍历原数组--->3-0:4
遍历原数组--->3-1:5
遍历原数组--->3-2:4
遍历原数组--->4-0:5
遍历原数组--->4-1:6
遍历原数组--->4-2:52
输出稀疏数组
11	11	4	
1	2	1	
2	3	2	
4	5	4	
5	6	52	
0	0	0	0	0	0	0	0	0	0	0	
0	0	1	0	0	0	0	0	0	0	0	
0	0	0	2	0	0	0	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
0	0	0	0	0	4	0	0	0	0	0	
0	0	0	0	0	0	52	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0	
0	0	0	0	0	0	0	0	0	0	0
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值