• JAVA练习题36:打乱一维数组中的数据,并按照4个一组的方式添加到二维数组中


    拼图游戏准备工作

    练习:打乱一维数组中的数据

    1. int[] tempArr = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
    2. 要求:打乱一维数组中的数据,并按照4个一组的方式添加到二维数组中。
    package Test;
    
    import java.util.Random;
    
    public class FTest {
        public static void main(String[] args) {
            /*
             * 练习:打乱一维数组中的数据
             * int[] tempArr = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
             * 要求:打乱一维数组中的数据,并按照4个一组的方式添加到二维数组中。
             * */
    
            //1.定义一个一维数组
            int[] tempArr = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15};
            //2.打乱数组中的数据的顺序
            //遍历数组,得到每一个元素,拿着每一个元素跟随机索引上的数据进行交换
            Random r = new Random();
            for (int i = 0; i < tempArr.length; i++) {
                //获取随机索引
                int index = r.nextInt(tempArr.length);
                //拿着遍历到的每一个数据,跟随机索引上的数据进行交换
                int temp = tempArr[i];
                tempArr[i] = tempArr[index];
                tempArr[index] = temp;
            }
            //3.遍历数组
            for (int i = 0; i < tempArr.length; i++) {
                System.out.print(tempArr[i] + " ");
            }
            System.out.println();
            //4.创建一个二维数组
            int[][] data = new int[4][4];
            //5.给二维数组添加数据
            //解法一:
            //遍历一位数组tempArr得到每一个元素,把每一个元素依次添加到二维数组当中
            for (int i = 0; i < tempArr.length; i++) {
                data[i / 4][i % 4] = tempArr[i];
            }
    /*        //解法二:
            //遍历二维数组,给里面的每一个数据赋值
            int index = 0;
            for (int i = 0; i < data.length; i++) {
                for (int j = 0; j < data[i].length; j++) {
                    data[i][j] = tempArr[index];
                    index++;
                }
            }*/
            //遍历二维数组
            for (int i = 0; i < data.length; i++) {
                for (int j = 0; j < data[i].length; j++) {
                    System.out.print(data[i][j] + " ");
                }
                System.out.println();
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
  • 相关阅读:
    React 组件实例的三大核心—props
    最简单的git图解(多远程仓库)
    基于SSM框架茶叶商城系统【项目源码+数据库脚本+报告】
    磁通量概述
    inpaint-anything:分割任何东西遇到图像修复
    Defaultdict:Python中的高效字典类
    数据治理-数据仓库和商务智能
    Idea2023 Springboot web项目正常启动,页面展示404解决办法
    Thymeleaf
    UGeek大咖说 | 精彩回顾:京东商城可观测性体系的落地与实践
  • 原文地址:https://blog.csdn.net/m0_46457497/article/details/127846334