使用稀疏数组保存棋盘到磁盘并从磁盘导入稀疏数组

使用稀疏数组保存棋盘到磁盘并从磁盘导入稀疏数组

sparseArray基本介绍

  • 当一个数组中大部分元素为0,或者为同一个值的数组时,可以使用稀疏数组来保存该数组。

稀疏数组的处理方法是:

  1. 记录数组一共有几行几列,有多少个不同的值

  2. 把具有不同值的元素的行列及值记录在一个小规模的数组中,从而缩小程序的 规模

图示

在这里插入图片描述
创建一个原始的二维数组11*11,使用print方法输出,1表示黑子,2表示白子

        //0表示没有棋子,1表示黑子,2表示白子
        int chessArry1[][] = new int[11][11];
        chessArry1[1][2] = 1;
        chessArry1[2][3] = 2;
        chessArry1[6][5] = 2;
        chessArry1[7][7] = 1;
        chessArry1[4][6] = 1;
        chessArry1[7][3] = 1;
        //输出原始的二维数组
        System.out.println("原始二维数组");
        print(chessArry1);

将二维数组转换为稀疏数组,使用getsum方法获取sparseArry的val值

        //1、先遍历二维数组得到非0的个数
        int sum = getsum(chessArry1);

创建sparseArry,并且转换二维数组为sparseArray

        int sparseArray[][] = new int[sum + 1][3];
        //给sparsrry赋值
        sparseArray[0][0] = 11;
        sparseArray[0][1] = 11;
        sparseArray[0][2] = sum;

        int temp = 1;
        for (int a = 0; a < chessArry1.length; a++) {
            for (int i = 0; i < chessArry1.length; i++) {
                if (chessArry1[a][i] != 0) {
                    sparseArray[temp][0] = a;
                    sparseArray[temp][1] = i;
                    sparseArray[temp++][2] = chessArry1[a][i];
                }
            }
        }

将稀疏数组存储到磁盘中

        File file = new File("d:\\c.txt");
        FileWriter fw = null;
        try {
            fw = new FileWriter(file);
            for (int[] ints : sparseArray) {
                for (int anInt : ints) {
                    fw.write(anInt + "\t");
                }
                fw.write("\r\n");
            }
            fw.flush();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fw != null) {
                try {
                    fw.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
         System.out.println("稀疏数组:");
         print(sparseArray);//打印稀疏数组到控制台

获取稀疏数组的行数,使用getsumIo()方法,为了获得磁盘中的sparseArray的val值

        int i1 = getsumIo(file);
        //创建新的数组接受磁盘中的文件
        int arr2[][] = new int[i1+1][3];

从磁盘中恢复sparseArray

        BufferedReader in = null;
        try {
            in = new BufferedReader(new FileReader(file));
            String line;  //一行数据
            int row = 0;
            //逐行读取,并将每个数组放入到数组中
            while ((line = in.readLine()) != null) {
                String[] t1emp = line.split("\t");
                for (int j = 0; j < t1emp.length; j++) {
                    arr2[row][j]=(Integer.parseInt(t1emp[j]));
                }
                row++;
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }finally {
            if(in!=null){
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        System.out.println("****************");
        System.out.println("磁盘写入稀疏数组:");
        print(arr2);
        System.out.println("**********************");

将稀疏数组恢复为原始数组

        //创建新数组
        int chessArry2[][] = new int[arr2[0][0]][arr2[0][1]];
        for (int i = 1; i < arr2.length; i++) {
            chessArry2[arr2[i][0]][arr2[i][1]] = arr2[i][2];
        }
        //输出稀疏数组转换的新数组
        print(chessArry2);

print()方法

/**
     * 输出二维数组
     *
     * @param a
     */
    public static void print(int[][] a) {
        for (int[] ints : a) {
            for (int anInt : ints) {
                System.out.printf("%d\t", anInt);
            }
            System.out.println();
        }
    }

获取二维数组的val值

/**
     * 获取二维数组的val值
     *
     * @param a
     * @return
     */
    public static int getsum(int[][] a) {
        int sum = 0;
        for (int[] ints : a) {
            for (int anInt : ints) {
                if (anInt != 0) sum++;
            }
        }
        return sum;
    }

获取磁盘文件稀疏数组的数组val值

/**
     * 获取磁盘文件稀疏数组的数组val值
     * @param file
     * @return
     */
    public static int getsumIo(File file ){
        ArrayList<Integer> list=new ArrayList<>();
        BufferedReader in = null;
        try {
            in = new BufferedReader(new FileReader(file));
            String line;  //一行数据
            int row = 0;
            //逐行读取,并将每个数组放入到数组中
            while ((line = in.readLine()) != null) {
                String[] t1emp = line.split("\t");
                for (int j = 0; j < t1emp.length; j++) {
                    list.add(Integer.parseInt(t1emp[j]));
                }
                row++;
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if(in!=null){
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return  list.get(2);//返回val值
    }

**

下面是完整代码

**

package com.edu.dataStucts.xishuArray;

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

public class sparseArray {
    public static void main(String[] args) throws IOException {
        //创建一个原始的二维数组11*11
        //0表示没有棋子,1表示黑子,2表示蓝子
        int chessArry1[][] = new int[11][11];
        chessArry1[1][2] = 1;
        chessArry1[2][3] = 2;
        chessArry1[6][5] = 2;
        chessArry1[7][7] = 1;
        chessArry1[4][6] = 1;
        chessArry1[7][3] = 1;
        //输出原始的二维数组
        System.out.println("原始二维数组");
        print(chessArry1);

        //将二维数组转换为稀疏数组
        //1、先遍历二维数组得到非0的个数
        int sum = getsum(chessArry1);

        //创建sparseArry
        int sparseArray[][] = new int[sum + 1][3];
        //给sparsrry赋值
        sparseArray[0][0] = 11;
        sparseArray[0][1] = 11;
        sparseArray[0][2] = sum;

        int temp = 1;
        for (int a = 0; a < chessArry1.length; a++) {
            for (int i = 0; i < chessArry1.length; i++) {
                if (chessArry1[a][i] != 0) {
                    sparseArray[temp][0] = a;
                    sparseArray[temp][1] = i;
                    sparseArray[temp++][2] = chessArry1[a][i];
                }
            }
        }

        //将稀疏数组存储到磁盘中
        File file = new File("d:\\c.txt");
        FileWriter fw = null;
        try {
            fw = new FileWriter(file);
            for (int[] ints : sparseArray) {
                for (int anInt : ints) {
                    fw.write(anInt + "\t");
                }
                fw.write("\r\n");
            }
            fw.flush();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fw != null) {
                try {
                    fw.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

        System.out.println("稀疏数组:");
        print(sparseArray);
        //获取稀疏数组的行数
        int i1 = getsumIo(file);
        int arr2[][] = new int[i1+1][3];
        //从磁盘中恢复稀疏数组
        BufferedReader in = null;
        try {
            in = new BufferedReader(new FileReader(file));
            String line;  //一行数据
            int row = 0;
            //逐行读取,并将每个数组放入到数组中
            while ((line = in.readLine()) != null) {
                String[] t1emp = line.split("\t");
                for (int j = 0; j < t1emp.length; j++) {
                    arr2[row][j]=(Integer.parseInt(t1emp[j]));
                }
                row++;
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }finally {
            if(in!=null){
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

        System.out.println("****************");
        System.out.println("磁盘写入稀疏数组:");
        print(arr2);
        System.out.println("**********************");

        //将稀疏数组恢复为原始数组
        //创建新数组
        int chessArry2[][] = new int[arr2[0][0]][arr2[0][1]];
        for (int i = 1; i < arr2.length; i++) {
            chessArry2[arr2[i][0]][arr2[i][1]] = arr2[i][2];
        }
        //输出稀疏数组转换的新数组
        print(chessArry2);
    }

    /**
     * 输出二维数组
     *
     * @param a
     */
    public static void print(int[][] a) {
        for (int[] ints : a) {
            for (int anInt : ints) {
                System.out.printf("%d\t", anInt);
            }
            System.out.println();
        }
    }


    /**
     * 得到sum值
     *
     * @param a
     * @return
     */
    public static int getsum(int[][] a) {
        int sum = 0;
        for (int[] ints : a) {
            for (int anInt : ints) {
                if (anInt != 0) sum++;
            }
        }
        return sum;
    }

    /**
     * 获取磁盘文件稀疏数组的数组行数
     * @param file
     * @return
     */
    public static int getsumIo(File file ){
        ArrayList<Integer> list=new ArrayList<>();
        BufferedReader in = null;
        try {
            in = new BufferedReader(new FileReader(file));
            String line;  //一行数据
            int row = 0;
            //逐行读取,并将每个数组放入到数组中
            while ((line = in.readLine()) != null) {
                String[] t1emp = line.split("\t");
                for (int j = 0; j < t1emp.length; j++) {
                    list.add(Integer.parseInt(t1emp[j]));
                }
                row++;
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if(in!=null){
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return  list.get(2);
    }

}

输出结果
在这里插入图片描述
在这里插入图片描述

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值