检查数组是否包含某个值的方法

Posted 对我有点小自信

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检查数组是否包含某个值的方法相关的知识,希望对你有一定的参考价值。

检查数组是否包含某个值的方法
使用List
publicstaticbooleanreturn Arrays.asList(arr).contains(targetValue); }
使用Set
publicstaticsetnew HashSet<String>(Arrays.asList(arr)); returnset.contains(targetValue); }
使用循环判断
publicstaticbooleanforifreturntrue; } returnfalse; }
使用 Arrays.binarySearch()
publicstaticbooleanint a = Arrays.binarySearch(arr, targetValue); if0returntrue; elsereturnfalse; }
时间复杂度
publicstaticvoidnew"CD""BC""EF""DE""AB"}; //use listlong startTime = System.nanoTime(); forint0100000; i++) { useList(arr, ); } long endTime = System.nanoTime(); long duration = endTime - startTime; System.out"useList: "1000000); //use set startTime = System.nanoTime(); forint0100000; i++) { useSet(arr, ); } endTime = System.nanoTime(); duration = endTime - startTime; System.out"useSet: "1000000); //use loop startTime = System.nanoTime(); forint0100000; i++) { useLoop(arr, ); } endTime = System.nanoTime(); duration = endTime - startTime; System.out"useLoop: "1000000); //use Arrays.binarySearch() startTime = System.nanoTime(); forint0100000; i++) { useArraysBinarySearch(arr, ); } endTime = System.nanoTime(); duration = endTime - startTime; System.out"useArrayBinary: "1000000); }
: : : :
使用一个长度为1k的数组
new1000]; Random s = new Random(); forint01000; i++){ arr[i] = String.valueOf(s.nextInt()); }
: : : :
使用一个长度为10k的数组
new10000]; Random s = new Random(); forint010000; i++){ arr[i] = String.valueOf(s.nextInt()); }
: : : :
 
总结
Arrays.binarySearch()使用 ArrayUtils
ArrayUtilscontainsimport org.apache.commons.lang3.ArrayUtils; publicstaticbooleanreturn ArrayUtils.contains(arr,targetValue); }

以上是关于检查数组是否包含某个值的方法的主要内容,如果未能解决你的问题,请参考以下文章

在Java中如何高效判断数组中是否包含某个元素

如何高效地判断数组中是否包含某特定值

如何高效地判断数组中是否包含某特定值

JQuery如何判断值中是不是包含某个值?

检查哪些字典键对应的数组包含某个字符串

检查数组是不是包含Java中的值的最有效方法? [复制]