gpt4 book ai didi

java - 返回唯一元素的数组

转载 作者:行者123 更新时间:2023-12-02 03:21:09 24 4
gpt4 key购买 nike

我对 Java 很陌生,我很难尝试将旧数组中的唯一值添加到新数组中,从技术上讲,我必须返回一个具有唯一元素的新数组,而不使用集合。

    public static void main(String[] args) {
double[] list = {1,2,1};
double [] Arr = new double[list.length];
for(int i = 0; i < list.length; i++) {
for(int x = 0; x < list.length; x++) {
if(list[i] != list[x]){

}
}
}
}

问题:如何将它们添加到新数组中?

我将其更改为:

    int index = 1;
int unique = 0;
newArray[0] = list[0];
while( index < list.length) {
if(list[index] != list[index - 1]){
unique = unique + 1;
newArray[unique] = list[index];
}
index++;
}
return newArray;
}

现在可以使用。

最佳答案

我还没有执行此操作,但下面的代码应该让您清楚地了解需要如何完成

public static void main(String[] args) {
double[] list = {1,2,1};
double [] Arr = new double[list.length];
int uniqueIndex = 0;
for(int i = 0; i < list.length; i++) {
boolean present = false;
for(int x = 0; x < uniqueIndex; x++) {
if(list[i] == Arr[x]){
present = true;
break;
}
}
if(!present)
Arr[uniqueIndex++] = list[i];
}
}

删除重复项后,新数组的末尾将具有默认的 0 值,您可能需要修剪它,可以使用 System.arraycopy 创建新数组

关于java - 返回唯一元素的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39583603/

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