gpt4 book ai didi

java - 采用 int 数组、int 索引和 int 值的方法

转载 作者:行者123 更新时间:2023-11-30 05:42:09 31 4
gpt4 key购买 nike

所以,这个问题对于像我这样的初学者来说有点高级,这就是为什么我希望你能忽略我的错误。

我们需要创建一个方法,该方法接受一个数组、一个要放入数组中的值以及数组中的索引值(空格)。

因为我的老师并不清楚她想要什么,所以她没有指定数组是否必须为空或满,这是本练习中最让我困惑的地方。

静态方法必须命名为:

addAtIndex( int [] a, int value, int index) 

并执行以下操作:

  • 如果数组中的最后一个空间为 0 或空,并且我想在已占用的空间之一中放置一个新的整数值,我需要将每个元素向右移动并按顺序保留该空间能够做到这一点。

  • 如果最后一个空格已被整数值占用,我需要“调整”数组大小并腾出更多空间,以便可以继续输入更多整数值。我知道您无法调整数组的大小,更不能保持所有元素完好无损,因此我需要创建一个更大的数组来做到这一点。

我用 Java 编程还不到两个月,所以我发现这相当困难。

我已经能够创建一个空数组,并且使用给定的参数在数组中输入了不同的数值。所有这些都是在 public static void main 中完成的,而不是在方法中完成的。我似乎无法在方法中执行此操作,特别是我不知道如何将数组中的所有内容移动到右侧。

import java.util.Arrays;
import java.util.Scanner;

public class Array{
public static void main (String args []){

Scanner input = new Scanner(System.in);
int [] array = new int[10];

for (int x = 0; x <= 9; x++){
int index = input.nextInt();
int value = (int)(Math.random()*50);

//move elements below insertion point.
for (int i = array.length-1; i > index; i--){
array[i] = array[i-1];
}
//insert new value
array[index] = value;
}
System.out.println(Arrays.toString(array));
}
}

这当然与老师希望我做的事情相去甚远。我在这里所做的只是创建一个数组,在我选择的索引中输入随机整数并将其打印出来。我需要一些帮助。

最佳答案

这就是我以最简约的方式做到这一点的方式。
你可能需要调整,因为我没有花太多时间。
然而,它应该会给你带来很大的插入。

记住int[]数组不能有空值。所以我将“空”值设为零。
关注评论!

static int[] addAtIndex(
final int[] array,
final int value,
final int index) {
if (array == null || array.length == 0) {
// We cannot do anything.
// Simply return to the caller
return array;
}

// This is the array reference holder
int[] localArray = array;

// Get the last element of the array
final int last = localArray[localArray.length - 1];

// Is the last element 0? Remember an int array cannot contain nulls
if (last == 0) {
if (array[index] != 0) {
// We need to shift everything to the right
// to give space to the new element
shiftRight(localArray, index);
}
} else {
// Create a bigger array of length = actualLength + 1
// and assign it to the reference holder
localArray = new int[array.length + 1];

// Copy the array elements to the new array, leaving a space
// for the new element
copyArrayAndLeaveSpace(index, array, localArray);
}

// Assign the new value
localArray[index] = value;

// Return the modified array reference
return localArray;
}

static void shiftRight(
final int[] array,
final int index) {
System.arraycopy(array, index, array, index + 1, array.length - index - 1);
}

static void copyArrayAndLeaveSpace(
final int index,
final int[] array,
final int[] newArray) {
System.arraycopy(array, 0, newArray, 0, index);
System.arraycopy(array, index, newArray, index + 1, array.length - index);
}

使用

final int[] nums = {1, 2, 3, 4, 5, 6, 8, 9, 0};
final int[] result = addAtIndex(nums, 7, 4);

输出:[1,2,3,4,7,5,6,8,9]

<小时/>
final int[] nums = {1, 2, 3, 4, 5, 6, 8, 9, 1};
final int[] result = addAtIndex(nums, 7, 4);

输出:[1,2,3,4,7,5,6,8,9,1]

关于java - 采用 int 数组、int 索引和 int 值的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55445383/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com