[leetcode] Search Insert Position

思路:其實就是用普通的二分查找,只不過在找不到該數時,left下標就是應該插入的位置,返回該下標即可。 Java代碼如下: public int searchInsert(int[] nums, int target) { int left = 0; int right = nums.length - 1; while (left <= ri
相關文章
相關標籤/搜索