JAVA练习53-打乱数组

该文章介绍了如何实现一个Solution类,包含打乱数组和重置数组的功能。Solution类中,通过维护原始数组nums和临时数组tempNums,使用随机数生成器在打乱数组时进行元素交换,保证所有排列等概率出现。重置数组时,将tempNums的内容复制回nums。示例代码展示了具体的实现细节。
摘要由CSDN通过智能技术生成

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

目录

前言

一、题目-打乱数组

1.题目描述

2.思路与代码

2.1 思路

2.2 代码

总结


前言

提示:这里可以添加本文要记录的大概内容:

2月17日练习内容


提示:以下是本篇文章正文内容,下面案例可供参考

一、题目-打乱数组

1.题目描述

给你一个整数数组 nums ,设计算法来打乱一个没有重复元素的数组。打乱后,数组的所有排列应该是 等可能 的。

实现 Solution class:

Solution(int[] nums) 使用整数数组 nums 初始化对象
int[] reset() 重设数组到它的初始状态并返回
int[] shuffle() 返回数组随机打乱后的结果
 

示例 1:

输入
["Solution", "shuffle", "reset", "shuffle"]
[[[1, 2, 3]], [], [], []]
输出
[null, [3, 1, 2], [1, 2, 3], [1, 3, 2]]

解释
Solution solution = new Solution([1, 2, 3]);
solution.shuffle();    // 打乱数组 [1,2,3] 并返回结果。任何 [1,2,3]的排列返回的概率应该相同。例如,返回 [3, 1, 2]
solution.reset();      // 重设数组到它的初始状态 [1, 2, 3] 。返回 [1, 2, 3]
solution.shuffle();    // 随机返回数组 [1, 2, 3] 打乱后的结果。例如,返回 [1, 3, 2]

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/shuffle-an-array
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2.思路与代码

2.1 思路

1.创建两个类i成员数组,nums与tempNums;

2.在改造函数中初始化nums与tempNums,并将nums中的数据copy到tempNums数组中,用来回返nums数组;

3.对于回返数组方法,将tempNums数组中的数据copy到nums数组中,返回nums数组即可

4.对于打乱数组的方法,先创建一个随机变量,接着遍历数组获得i,如何取j为i加上【0,nums.length- i)中的随机数,最后交换索引i与索引j处的数据

2.2 代码

代码如下(示例):

class Solution {

    private int[] nums;     //数组
    private int[] tempNums; //临时数组

    //构造函数
    public Solution(int[] nums) {

        //初始化nums
        this.nums = nums;

        //初始化tempNums
        this.tempNums = new int[nums.length];

        //将nums的数据copy到tempNum中
        System.arraycopy(nums,0,tempNums,0,nums.length); 
    }


    //重设数组
    public int[] reset() {
        //将tempNums中的数据copy到nums中
        System.arraycopy(tempNums,0,nums,0,nums.length);
        return nums;
    }
    
    public int[] shuffle() {
        //随机数
        Random r = new Random();
        for(int i = 0;i < nums.length;i ++){
            int j = i + r.nextInt(nums.length - i);
            //交换i与j
            int temp = nums[i];
            nums[i] = nums[j];
            nums[j] = temp;
        }

        return nums;
    }
}

/**
 * Your Solution object will be instantiated and called as such:
 * Solution obj = new Solution(nums);
 * int[] param_1 = obj.reset();
 * int[] param_2 = obj.shuffle();
 */


总结

提示:这里对文章进行总结:
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Mikudd3

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值