力扣第一天

本文记录了在力扣平台的第一天挑战,分别解析了三个算法问题:704. 二分查找,寻找有序数组中目标值的索引;278. 第一个错误的版本,找出导致所有后续版本都失败的第一个坏版本;35. 搜索插入位置,找到目标值在有序数组中的合适插入点。每个问题都要求以O(log n)的时间复杂度解决,文中探讨了解题思路和避免溢出风险的方法。
摘要由CSDN通过智能技术生成

problem Ⅰ

704. Binary Search

Given an array of integers nums which is sorted in ascending order, and an integer target, write a function to search target in nums. If target exists, then return its index. Otherwise, return -1.

You must write an algorithm with O(log n) runtime complexity.

class Solution {
   
public:
    int search(vector<int>& nums, int target) {
   
        int begin = 0;
        int end = nums.size()-1;
        while(begin <= end){
   
            int index = (begin+end)/2;
            if(nums[index
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值