JAVA解法
代码语言:javascript复制class Solution {
public int searchInsert(int[] nums, int target) {
// 对传进来的 nums 进行遍历
for(int i = 0; i < nums.length;i ){
// 存在 target 则返回其索引,
// 不存在则返回第一个比它大的索引
if(nums[i] >= target){
return i;
}
}
// target 比 nums 中任意一个都大则长度为 nums
return nums.length;
}
}
leetcode原题: 35. 搜索插入位置