Java提供的Arrays类里包含一些static修饰的方法可以直接操作数组. int binarySearch(type[] a, type key)使用二分法查询key元素值在a数组中出现的索引,如果a数组不包含key,返回负数,调用该方法要求数组中元素已经按升序排列. int binarySearch(type[] a, int fromIndex, int toIndex, type key)给定范围内二分搜索 type[] copyOf(type[] original, int new…