如何在 Java 中从数组中提取不同的值?


若要从数组中提取不同值,则需要将数组中的每个元素与所有剩余元素进行比较;如果匹配,则你找到了重复元素。执行此操作的一个解决方案是使用两个循环(嵌套),其中内循环从 i+1(其中 i 是外循环的变量)开始,以避免比较中的重复内容。

示例

 实战演示

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

public class DetectDuplcate {
   public static void main(String args[]) {
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter the size of the array that is to be created::");
      int size = sc.nextInt();
      int[] myArray = new int[size];
      System.out.println("Enter the elements of the array ::");

      for(int i=0; i<size; i++) {
         myArray[i] = sc.nextInt();
      }
      System.out.println("The array created is ::"+Arrays.toString(myArray));
      System.out.println("indices of the duplicate elements :: ");
 
      for(int i=0; i<myArray.length; i++) {
         for (int j=i+1; j<myArray.length; j++) {
            if(myArray[i] == myArray[j]) {
               System.out.println(j);
            }
         }
      }
   }
}

输出

Enter the size of the array that is to be created ::
6
Enter the elements of the array ::
87
52
87
63
41
63
The array created is :: [87, 52, 87, 63, 41, 63] indices of the duplicate elements ::
2
5

更新于:30-Jul-2019

930 阅览

开启你的职业生涯

完成该课程以获得认证

开始
广告
© . All rights reserved.