亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Java中判斷數組元素是否存在

發布時間:2021-03-19 17:45:00 來源:億速云 閱讀:630 作者:Leah 欄目:編程語言

這篇文章給大家介紹怎么在Java中判斷數組元素是否存在,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1. 通過將數組轉換成List,然后使用List中的contains進行判斷其是否存在

public static boolean useList(String[] arr,String containValue){
    return Arrays.asList(arr).contains(containValue);
  }

 需要注意的是Arrays.asList這個方法中轉換的List并不是java.util.ArrayList而是java.util.Arrays.ArrayList,其中java.util.Arrays.ArrayList中不能對數組的長度進行擴容操作,這個尤為重要,其中contains實現如下:

@Override
public boolean contains(Object o) {
  //調用indexOf方法判斷其在那個位置,判斷其時候為-1
   return indexOf(o) != -1;
}
@Override
public int indexOf(Object o) {
  //獲取元素
  E[] a = this.a;
  //判斷空
  if (o == null) {
    //循環判斷
    for (int i = 0; i < a.length; i++)
      //如果元素為null
      if (a[i] == null)
       //則返回
       return i;
  } else {
    //如果其不為空
    for (int i = 0; i < a.length; i++)
     //判斷元素與a[i]是否相等
      if (o.equals(a[i]))
       //相等返回i
       return i;
  }
      //否則返回-1
      return -1;
}

2. 使用Set進行實現判斷是否存在

public static boolean useSet(String[] arr,String containValue){
    return new HashSet<>(Arrays.asList(arr)).contains(containValue);
  }

  原理將數組->List->Set使用Set進行比較

源碼:通過調用map的containsKey實現的,而hashmap中則是通過遍歷hash表中的key實現

ypublic boolean contains(Object o) {
    return map.containsKey(o);
  }

3. 使用循環來實現,自己編寫一個循環來判斷

public static boolean useLoop(String[] arr,String containValue){
    //判斷是否為空
    if (arr==null||arr.length==0){
      return false;
    }
    for (int i = 0; i < arr.length; i++) {
      //all null
      if (containValue!=null&&containValue.equals(arr[i])){
        return true;
      }else if (arr[i]==null){
        return true;
      }
    }
    return false;
  }

4. 使用org.apache.commons.lang3.ArrayUtils中的contains方法來實現

public static boolean useUtils(String[] arr,String containValue){
    return ArrayUtils.contains(arr,containValue);
  }

具體實現源碼:

public static boolean contains(final Object[] array, final Object objectToFind) {
    //調用indexof進行判斷位置
    return indexOf(array, objectToFind) != INDEX_NOT_FOUND;
  }
  public static int indexOf(final Object[] array, final Object objectToFind, int startIndex) {
    //判斷null
    if (array == null) {
      return INDEX_NOT_FOUND;
    }
    //判斷起始位置
    if (startIndex < 0) {
      startIndex = 0;
    }
    //判斷查詢元素是否為null
    if (objectToFind == null) {
      //null則直接使用==進行循環判斷位置
      for (int i = startIndex; i < array.length; i++) {
        if (array[i] == null) {
          return i;
        }
      }
     //判斷元素是不是array中的元素的實例,如果是則循環并采用equals進行判斷
    } else if (array.getClass().getComponentType().isInstance(objectToFind)) {
      for (int i = startIndex; i < array.length; i++) {
        if (objectToFind.equals(array[i])) {
          return i;
        }
      }
    }
    //返回沒有找到
    return INDEX_NOT_FOUND;
  }

  使用循環1w次來檢測效率

public static void reCompileArr(String[] arr,String containValue){
  //using List
  long start = System.nanoTime();
  for (int i = 0; i < 10000; i++) {
    useList(arr,containValue);
  }
  long end=System.nanoTime();
  System.out.println("using list->"+(end-start)/10000);
  //using set
  start = System.nanoTime();
  for (int i = 0; i < 10000; i++) {
    useSet(arr,containValue);
  }
  end=System.nanoTime();
  System.out.println("using set->"+(end-start)/10000);
  //using loop
  start = System.nanoTime();
  for (int i = 0; i < 10000; i++) {
    useLoop(arr,containValue);
  }
  end=System.nanoTime();
  System.out.println("using loop->"+(end-start)/10000);
  //using utils
  start = System.nanoTime();
  for (int i = 0; i < 10000; i++) {
    useUtils(arr,containValue);
  }
  end=System.nanoTime();
  System.out.println("using utils->"+(end-start)/10000);
}

  結果如下圖:

using list->973
using set->2676
using loop->448
using utils->1364

 使用的jdk版本為jdk1.8.0_172版本,由上面可以推斷出來

以上四種方法的效率高->低

loop>list>utils>set

對比之下,其實可以看出,采用loop方法進行判斷的效率最高,再過去list,再過去utils再過去set

關于怎么在Java中判斷數組元素是否存在就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

岚皋县| 什邡市| 葫芦岛市| 浦东新区| 内丘县| 绩溪县| 西丰县| 寿阳县| 合作市| 普定县| 铅山县| 平度市| 永济市| 绵阳市| 巴彦淖尔市| 武隆县| 陆河县| 宜君县| 泽州县| 阿荣旗| 隆昌县| 深水埗区| 遂宁市| 宁强县| 青海省| 青岛市| 长宁县| 隆昌县| 合江县| 日喀则市| 泊头市| 栖霞市| 犍为县| 莲花县| 高邮市| 布尔津县| 宁陕县| 汕头市| 丰城市| 洛浦县| 江都市|