您好,登錄后才能下訂單哦!
小編給大家分享一下LeetCode怎么搜索插入位置,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
給定一個排序數組和一個目標值,在數組中找到目標值,并返回其索引。如果目標值不存在于數組中,返回它將會被按順序插入的位置。
你可以假設數組中無重復元素。
輸入: [1,3,5,6], 5
輸出: 2
示例 2:
輸入: [1,3,5,6], 2
輸出: 1
示例 3:
輸入: [1,3,5,6], 7
輸出: 4
示例 4:
輸入: [1,3,5,6], 0
輸出: 0
本題主要采用的思路是基于集合和二分查找進行解決的,使用集合set的目的是為了去重,使用二分查找的目的是為了降低時間復雜度的,這就是本題的大致思路了。
import java.util.*;
import java.util.stream.Collectors;
/**
* @author pc
*/
public class SearchInsertTest {
public static void main(String[] args) {
int[] array = {1, 3, 5, 6};
int target = 0;
int searchInsert = searchInsert(array, target);
System.out.println("searchInsert = " + searchInsert);
}
public static int searchInsert(int[] nums, int target) {
Set<Integer> set = new LinkedHashSet<>(nums.length);
for (int num : nums) {
set.add(num);
}
set.add(target);
List<Integer> list = new ArrayList<>(set);
List<Integer> collect = list.stream().sorted(Integer::compareTo).collect(Collectors.toList());
int[] result = new int[collect.size()];
int i = 0;
for (int num : collect) {
result[i++] = num;
}
int left = 0;
int right = list.size() - 1;
while (left <= right) {
int mid = (right + left) / 2;
if (target == result[mid]) {
return mid;
} else if (target > result[mid]) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return -1;
}
}
看完了這篇文章,相信你對“LeetCode怎么搜索插入位置”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。