笔试编程 | 二分查找法、Java数组笔试题、排序算法

分享一些笔试中经常遇到的一些编程题,包括解题思路和代码实现,下图是分享的大纲:
在这里插入图片描述

二分查找法

二分查找又称折半查找, 它是一种效率较高的查找方法。
前提:(1)必须采用顺序存储结构(2)必须按关键字大小有序排列
原理:将数组分为三部分,依次是中值(所谓的中值就是数组中间位置的那个值)前,中值,中值后,将要查找的值和数组的中值进行比较,若小于中值则在中值前面找,若大于中值则在中值后面找,等于中值时直接返回。然后依次是一个递归过程,将前半部分或者后半部分继续分解为三部分。

1. 循环实现二分查找
public class BinarySearch {
    public static int binarySearch(int[] arr, int x) {
        int low = 0;
        int high = arr.length - 1;
        while (low <= high) {
            int middle = (low + high) / 2;
            if (x == arr[middle]) {
                return middle;
            } else if (x < arr[middle]) {
                high = middle - 1;
            } else {
                low = middle + 1;
            }
        }

        //无法查到数据
        return -1;
    }
  
2. 递归实现二分查找

  public static int binarySearch(int[] dataset, int data, int beginIndex, int endIndex) {
      int midIndex = (beginIndex + endIndex) / 2;
      if (data < dataset[beginIndex] || data > dataset[endIndex] || beginIndex > endIndex) {
          return -1;
      }
      if (data < dataset[midIndex]) {
          return binarySearch(dataset, data, beginIndex, midIndex - 1);
      } else if (data > dataset[midIndex]) {
          return binarySearch(dataset, data, midIndex + 1, endIndex);
      } else {
          return midIndex;
      }
  }

  public static void main(String[] args) {
      int[] arr = {6, 12, 33, 87, 90, 97, 108, 561};
      System.out.println("循环查找:" + (binarySearch(arr, 87) + 1));
      System.out.println("递归查找" + binarySearch(arr, 3, 87, arr.length - 1));
  }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值