leetcode35.搜索插入位置(遍历并进行大小判断)

Posted shudaixiongbokeyuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode35.搜索插入位置(遍历并进行大小判断)相关的知识,希望对你有一定的参考价值。

package newleetcode;

/**
* 搜索插入位置
* 不存在该数据即插入顺序数组适当位置
*/
public class LeetCode35 {

public int search(int[] nums,int val){
for(int i=0;i<nums.length;i++){
//判断是否等于或者大于该数值,等于返回该数值下标,大于说明应插入在该数据前一位,同样返回该数据下标
if(nums[i]>=val)return i;
}
return nums.length;
}

public static void main(String args[]){
LeetCode35 leetCode35=new LeetCode35();
int[] num={1,3,5,7};
int val=4;
System.out.println(leetCode35.search(num,val));
}
}

/**leetcode提交代码
* class Solution {
* public int searchInsert(int[] nums, int target) {
* for(int i=0;i<nums.length;i++){
* if(nums[i]>=target)return i;
* }
* return nums.length;
* }
* }
*/

以上是关于leetcode35.搜索插入位置(遍历并进行大小判断)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 35. 搜索插入位置 | Python

leetcode-35.搜索插入位置

leetCode 第35题,搜索插入位置

LeetCode 35. 搜索插入位置

Leetcode -35. 搜索插入位置

[LeetCode] 35. 搜索插入位置