二维数组 稀疏数组转换 读写入磁盘

package com.wu.sparseArr;

import java.io.*;
import java.util.ArrayList;
import java.util.List;

public class SparseArray1 {
    public static void main(String[] args) {
        //先创建一个原始的二维数组11*11
        //0:表示没有棋子 1 表示黑子 2表示白子
        int chessArr1[][] = new int[11][11];
        chessArr1[1][2] = 1;
        chessArr1[2][3] = 2;
        //输出原始的二维数组
        System.out.println("原始的二维数组~");
        for (int[] row : chessArr1) {
            for (int data : row) {
                System.out.printf("%d\t",data);
            }
            System.out.println();
        }
        //将二维数组转稀疏数组的思路
        //1.先遍历二维数组,得到非0数据的个数
        int sum = 0;
        for (int i = 0; i < 11; i++) {
            for (int j = 0; j < 11; j++) {
                if(chessArr1[i][j]!=0){
                    sum++;
                }
            }
        }
        //2.得到sum后 创建对应的稀疏数组
        int sparseArr[][]=new int[sum+1][3];
        //给稀疏数组赋值
        sparseArr[0][0] = 11;
        sparseArr[0][1] = 11;
        sparseArr[0][2] = sum;
        //遍历二维数组,将非0的值存放到稀疏数组中
        int count = 0;
        for (int i = 0; i < 11; i++) {
            for (int j = 0; j < 11; j++) {
                if(chessArr1[i][j]!=0){
                    count++;
                    sparseArr[count][0] = i;
                    sparseArr[count][1] = j;
                    sparseArr[count][2] =chessArr1[i][j];
                }
            }
        }
        //输出稀疏数组的形式
        System.out.println();
        System.out.println("稀疏数组为~~");
        for (int[] row : sparseArr) {
            for (int data : row) {
                System.out.printf("%d\t",data);
            }
            System.out.println();
        }
        //将稀疏数组 恢复成原始的数组
        //1.先读取第一行 根据第一行数据 创建原始的二维数组
        int chessArr2[][] = new int[sparseArr[0][0]][sparseArr[0][1]];

        for (int i = 1; i < sparseArr[0][2]+1; i++) {
            chessArr2[sparseArr[i][0]][sparseArr[i][1]] = sparseArr[i][2];
        }

        //输出恢复后的二维数组
        System.out.println();
        System.out.println("恢复后的二维数组");
        for (int[] row : chessArr2) {
            for (int data : row) {
                System.out.printf("%d\t",data);
            }
            System.out.println();
        }
        //将稀疏数组保存到硬盘
        File file = new File("Map.data");
        try {
            BufferedWriter bw = new BufferedWriter(new FileWriter(file));
            for (int[] row : sparseArr) {
                for (int data : row) {
                    bw.write(data+"\t");
                }
                bw.write("\n");
                bw.flush();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }



        //从硬盘读取稀疏数组,并进行恢复
        //获取硬盘中稀疏数组的行数,并将其存储到一个list中
        File src=new File("Map.data");
        BufferedReader br=null;
        List<Integer> list=new ArrayList<>();
        try {
            br=new BufferedReader(new FileReader(src));
            String line;
            while((line=br.readLine())!=null) {
                String[] str=line.split("\t");
                for(int i=0;i<str.length;i++) {
                    list.add(Integer.parseInt(str[i]));
                }
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            if(br!=null) {
                try {
                    br.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        //从硬盘读取稀疏数组到内存种的方法二:直接对之前的list进行操作
        //创建稀疏数组
        int sparseArr2[][]=new int[list.get(2)+1][3];
        int j=0;
        for(int i=0;i<list.size();i=i+3) {
            sparseArr2[j][0]=list.get(i);
            sparseArr2[j][1]=list.get(i+1);
            sparseArr2[j][2]=list.get(i+2);
            j++;
        }

        System.out.println("-----------------从硬盘种读取的稀疏数组---------------------");
        for(int[] row2:sparseArr2) {
            for(int data:row2) {
                System.out.printf("%d\t",data);
            }
            System.out.println();
        }



    }
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值