tag: %u4E8C%u5206%u67E5%u627E.md

Tag: 二分查找

1 posts
二分查找模板
二分查找二分查找可用于在有序序列中搜索或确定元素或枢轴。这里我们有三种使用二分查找的场景。 在唯一元素数组中查找元素1234567891011int basic_binary_search(int[] arr, int target) { int left = 0; int right = n; while(left <= right) { int mid ...