美文网首页
稀疏数组和队列

稀疏数组和队列

作者: Cook1fan | 来源:发表于2020-11-12 07:28 被阅读0次
    image.png
    image.png
    public class SparseArray {
    
        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;
            chessArr1[4][5] = 2;
            // 输出
            for (int[] row : chessArr1) {
                for (int data : row) {
                    System.out.printf("%d\t", data);
                }
                System.out.println();
            }
            // 二维转稀疏
            int sum = 0;
            for (int[] row : chessArr1) {
                for (int data : row) {
                    if (data != 0) {
                        sum++;
                    }
                }
            }
            System.out.println("sum = " + sum);
            // 创建稀疏
            int[][] sparseArr = new int[sum + 1][3];
            sparseArr[0][0] = 11;
            sparseArr[0][1] = 11;
            sparseArr[0][2] = sum;
            int count = 0; // 用于记录是第几个非零数据
            for (int row = 0; row < chessArr1.length; row++) {
                for (int col = 0; col < chessArr1[row].length; col++) {
                    if (chessArr1[row][col] != 0) {
                        count++;
                        sparseArr[count][0] = row;
                        sparseArr[count][1] = col;
                        sparseArr[count][2] = chessArr1[row][col];
                    }
                }
            }
            // 输出稀疏
            System.out.println();
            System.out.println("得到稀疏数组");
            for (int[] row : sparseArr) {
                System.out.printf("%d\t%d\t%d\t", row[0], row[1], row[2]);
                System.out.println();
            }
            System.out.println();
    
            // 稀疏 转 二维
            int[][] chessArr2 = new int[sparseArr[0][0]][sparseArr[0][1]];
    
            for (int row = 1; row < sparseArr.length; row++) {
                chessArr2[sparseArr[row][0]][sparseArr[row][1]] = sparseArr[row][2];
            }
    
            for (int[] row : chessArr2) {
                for (int data : row) {
                    System.out.printf("%d\t", data);
                }
                System.out.println();
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:稀疏数组和队列

          本文链接:https://www.haomeiwen.com/subject/qfasbktx.html