二分查找框架

引用:labuladong的算法小抄 1. 二分查找 `java int binary_search(int[] nums, int target) { int left = 0, right = nums.length - ...