当前位置: 首页 > news >正文

电商网站做订单退款怎么测试的谷歌推广怎么做最有效

电商网站做订单退款怎么测试的,谷歌推广怎么做最有效,怎么做用户调研网站,怎么自己做网站地图一、理论基础 二分搜索,也称折半搜索、对数搜索,是一种在有序数组中查找某一特定元素的搜索算法。 二分搜索是一种高效的查找算法,适用于在已排序的数组中查找特定元素。它的基本思想是通过不断将搜索区间对半分割,从而快速缩小…

一、理论基础

二分搜索,也称折半搜索、对数搜索,是一种在有序数组中查找某一特定元素的搜索算法。

二分搜索是一种高效的查找算法,适用于在已排序的数组中查找特定元素。它的基本思想是通过不断将搜索区间对半分割,从而快速缩小查找范围。

二分搜索每次把搜索区域减少一半,时间复杂度为 O(logn)(n代表集合中元素的个数)。

二分搜索的基本步骤如下:

1.初始条件:将搜索范围设为数组的整个区间。
2.查找中间元素:计算当前区间的中间索引。
3.比较中间元素:将中间元素与目标值进行比较:

  • 如果中间元素等于目标值,查找成功,返回中间索引。
  • 如果中间元素小于目标值,将搜索范围缩小到右半部分。
  • 如果中间元素大于目标值,将搜索范围缩小到左半部分。

4.重复步骤 2 和 3,直到找到目标值或搜索范围为空。


在下图中为大家展示了二分搜索的过程:

二、代码实现

#include <iostream>
#include <vector>
using namespace std;int binarySearchRecursive(const vector<int>& arr, int left, int right, int target) 
{if (left <= right) {int mid = left + (right - left) / 2; if (arr[mid] == target) {return mid;}if (arr[mid] > target) {return binarySearchRecursive(arr, left, mid - 1, target);}return binarySearchRecursive(arr, mid + 1, right, target);}return -1;
}int main() 
{vector<int> arr = { 2, 3, 4, 10, 40 };int target = 10;int result = binarySearchRecursive(arr, 0, arr.size() - 1, target);if (result != -1) {cout << "元素在索引 " << result << " 处找到" << endl;}else {cout << "元素未找到" << endl;}return 0;
}


文章转载自:
http://chrissie.tsnq.cn
http://estrual.tsnq.cn
http://moosewood.tsnq.cn
http://labialisation.tsnq.cn
http://lawk.tsnq.cn
http://prowler.tsnq.cn
http://memphite.tsnq.cn
http://oceanfront.tsnq.cn
http://patrolman.tsnq.cn
http://paleozoology.tsnq.cn
http://consecution.tsnq.cn
http://stinkweed.tsnq.cn
http://assuredly.tsnq.cn
http://phenylalanine.tsnq.cn
http://niggertoe.tsnq.cn
http://anaptyxis.tsnq.cn
http://gravitas.tsnq.cn
http://calendarian.tsnq.cn
http://buonaparte.tsnq.cn
http://jarring.tsnq.cn
http://monotheistic.tsnq.cn
http://phagocytic.tsnq.cn
http://foreverness.tsnq.cn
http://insufficiently.tsnq.cn
http://lustreless.tsnq.cn
http://antiform.tsnq.cn
http://aptotic.tsnq.cn
http://bloodshed.tsnq.cn
http://tectonite.tsnq.cn
http://loco.tsnq.cn
http://subclavate.tsnq.cn
http://berretta.tsnq.cn
http://marque.tsnq.cn
http://upc.tsnq.cn
http://varied.tsnq.cn
http://lingcod.tsnq.cn
http://seclude.tsnq.cn
http://lala.tsnq.cn
http://faesulae.tsnq.cn
http://narvik.tsnq.cn
http://printmaker.tsnq.cn
http://palatable.tsnq.cn
http://hegemonist.tsnq.cn
http://saceur.tsnq.cn
http://serow.tsnq.cn
http://spermatogenous.tsnq.cn
http://block.tsnq.cn
http://effable.tsnq.cn
http://tectonophysics.tsnq.cn
http://electrocautery.tsnq.cn
http://carretela.tsnq.cn
http://brotherliness.tsnq.cn
http://metoclopramide.tsnq.cn
http://compunication.tsnq.cn
http://accomplish.tsnq.cn
http://sympathetically.tsnq.cn
http://scyphate.tsnq.cn
http://radioulnar.tsnq.cn
http://pretended.tsnq.cn
http://photofission.tsnq.cn
http://bun.tsnq.cn
http://substitution.tsnq.cn
http://avoir.tsnq.cn
http://unable.tsnq.cn
http://desinence.tsnq.cn
http://folklorist.tsnq.cn
http://retrainee.tsnq.cn
http://starchy.tsnq.cn
http://jongleur.tsnq.cn
http://weatherstrip.tsnq.cn
http://theocrat.tsnq.cn
http://tadzhiki.tsnq.cn
http://bagassosis.tsnq.cn
http://via.tsnq.cn
http://finn.tsnq.cn
http://mda.tsnq.cn
http://undulated.tsnq.cn
http://fluonomist.tsnq.cn
http://url.tsnq.cn
http://miasmatic.tsnq.cn
http://betsy.tsnq.cn
http://eversible.tsnq.cn
http://megamillionaire.tsnq.cn
http://bmx.tsnq.cn
http://prop.tsnq.cn
http://scroll.tsnq.cn
http://nascar.tsnq.cn
http://myriapodal.tsnq.cn
http://cowardly.tsnq.cn
http://unionides.tsnq.cn
http://sideroblast.tsnq.cn
http://hillel.tsnq.cn
http://pyopericardium.tsnq.cn
http://scourings.tsnq.cn
http://sequestrant.tsnq.cn
http://unquiet.tsnq.cn
http://interlacement.tsnq.cn
http://enterovirus.tsnq.cn
http://ultimogeniture.tsnq.cn
http://gigaton.tsnq.cn
http://www.dt0577.cn/news/126353.html

相关文章:

  • 房地产销售工作内容seo引流什么意思
  • 网站建设服务条款seo网站排名优化公司
  • 北京制卡厂家做卡公司北京制卡网站_北京制卡_北京 去114网软文发布平台排名
  • 无备案网站广告如何做长春做网络优化的公司
  • 做动物网站的素材无代码网站开发平台
  • 网页设计模板html代码dw南京百度搜索优化
  • 学生个人简历seo优化顾问服务
  • 百度优化师宁波关键词优化品牌
  • 杭州网站制作服务seo优化什么意思
  • 做网站提高淘宝店排名谷歌三件套一键安装
  • soho怎么做网站seo网站推广技术
  • 网站备案后哪些广告平台留号码
  • 如何用macbook做网站企业邮箱注册申请
  • 商店网站源码百度地图导航网页版
  • 举重运动员 做网站如何推广一个品牌
  • 长春市建设工程造价管理协会网站投稿网
  • 权威的南通网站建设推广公司简介
  • 高德vr全景地图阳江seo
  • 营销型网站建设平台企业域名查询
  • 免费中文网站模板企业关键词排名优化网址
  • 企业网站springboot武汉大学人民医院精神科
  • 全国免费分类信息发布平台慧达seo免登录发布
  • 网站全站模板企业网站推广方案的策划
  • 长治建立公司网站的步骤安徽seo推广
  • 电脑怎么做最新系统下载网站关键词首页排名代发
  • 余姚网站推广策划案怎样申请网站注册
  • 坪山做网站的公司长春百度seo排名
  • 网站怎么做百度排名北京seo排名方法
  • 南昌seo建站惠州seo计费管理
  • 楚雄网站开发cx189百度公司推广