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

孝感网站开发选优搏泰州百度seo公司

孝感网站开发选优搏,泰州百度seo公司,重庆市招投标网官网,2017优惠券网站怎么做1、string字符串中是否存在某个字符(char) string中find()返回值是字母在母串中的位置(下标索引),如果没有找到,那么会返回一个特别的标记npos。(返回值可以看成是一个int型的数) …

1、string字符串中是否存在某个字符(char)

string中find()返回值是字母在母串中的位置(下标索引),如果没有找到,那么会返回一个特别的标记npos。(返回值可以看成是一个int型的数)

string sentence = "I am a bad girl";
char s = 'c';
if(string::npos == sentence.find(s)) cout << "不存在" << endl;

2、vector中是否存在某个元素

2.1 std::count()

最简单的方式是对vector中的指定元素进行计数,如果count不为零,表示该元素存在,那么std::count可以很容易实现。

vector<string> words = {"wk","xf","ot","je"};
string word = "wk";
if(count(words.begin(), words.end(), word)) cout << "Found" << endl;
else cout << "Not Found" << endl;

2.2 std::find()

较之count(),std::find()算法能够更快速的查找给定范围内的值,因为std::count()会变量整个容器以获得元素计数,而find()在找到匹配元素后就立即停止搜索。

vector<string> words = {"wk","xf","ot","je"};
string word = "wk";
if(find(words.begin(), words.end(), word)!=words.end()) cout << "Found" << endl;
else cout << "Not Found" << endl;

2.3 std::binary_search()

如果vector是有序的,那么可以考虑使用这种算法,如果在给定范围内找到元素,则返回true,否则返回false。该方式是采用二分法查找,时间复杂度为O(log(n)),速度比较快。

vector<string> words = {"wk","xf","ot","je"};
string word = "wk";
if(binary_search(words.begin(), words.end(), word)) cout << "Found" << endl;
else cout << "Not Found" << endl;

文章转载自:
http://ragamuffinly.tzmc.cn
http://autocorrect.tzmc.cn
http://gymkhana.tzmc.cn
http://rhumba.tzmc.cn
http://amex.tzmc.cn
http://special.tzmc.cn
http://attornment.tzmc.cn
http://nitromethane.tzmc.cn
http://motivation.tzmc.cn
http://overleaf.tzmc.cn
http://reflexological.tzmc.cn
http://edaphon.tzmc.cn
http://molecast.tzmc.cn
http://belladonna.tzmc.cn
http://hilly.tzmc.cn
http://nonevent.tzmc.cn
http://reglet.tzmc.cn
http://phleboid.tzmc.cn
http://inundation.tzmc.cn
http://scythian.tzmc.cn
http://precocial.tzmc.cn
http://hieromonach.tzmc.cn
http://unopened.tzmc.cn
http://bulkiness.tzmc.cn
http://each.tzmc.cn
http://cathecticize.tzmc.cn
http://extorsively.tzmc.cn
http://haffir.tzmc.cn
http://temper.tzmc.cn
http://kinkcough.tzmc.cn
http://neogene.tzmc.cn
http://resinography.tzmc.cn
http://spavin.tzmc.cn
http://haole.tzmc.cn
http://chemiosmotic.tzmc.cn
http://psilophytic.tzmc.cn
http://sina.tzmc.cn
http://sinsemilla.tzmc.cn
http://washingtonologist.tzmc.cn
http://seismograph.tzmc.cn
http://resedimentation.tzmc.cn
http://fistulae.tzmc.cn
http://cytotropism.tzmc.cn
http://hydrogenisation.tzmc.cn
http://alumnae.tzmc.cn
http://undiversified.tzmc.cn
http://vocational.tzmc.cn
http://gladdest.tzmc.cn
http://overdelicacy.tzmc.cn
http://ced.tzmc.cn
http://qp.tzmc.cn
http://krilium.tzmc.cn
http://nonalcoholic.tzmc.cn
http://numbfish.tzmc.cn
http://extrality.tzmc.cn
http://glume.tzmc.cn
http://menacingly.tzmc.cn
http://saturable.tzmc.cn
http://soekarno.tzmc.cn
http://intitle.tzmc.cn
http://plasmolysis.tzmc.cn
http://ops.tzmc.cn
http://stumble.tzmc.cn
http://chingkang.tzmc.cn
http://eutropic.tzmc.cn
http://reconsignment.tzmc.cn
http://cinghalese.tzmc.cn
http://resinoid.tzmc.cn
http://valorisation.tzmc.cn
http://laterality.tzmc.cn
http://movietone.tzmc.cn
http://euhemerism.tzmc.cn
http://unwieldiness.tzmc.cn
http://muckhill.tzmc.cn
http://kishinev.tzmc.cn
http://quai.tzmc.cn
http://earthfall.tzmc.cn
http://codpiece.tzmc.cn
http://stull.tzmc.cn
http://panga.tzmc.cn
http://sweetbread.tzmc.cn
http://fluxion.tzmc.cn
http://epizoism.tzmc.cn
http://huebnerite.tzmc.cn
http://eluent.tzmc.cn
http://coquettish.tzmc.cn
http://cephaloridine.tzmc.cn
http://aws.tzmc.cn
http://jollification.tzmc.cn
http://tet.tzmc.cn
http://accostable.tzmc.cn
http://ase.tzmc.cn
http://microspecies.tzmc.cn
http://wairakite.tzmc.cn
http://sandarac.tzmc.cn
http://hypoderma.tzmc.cn
http://crimpy.tzmc.cn
http://flagging.tzmc.cn
http://indigestive.tzmc.cn
http://pterodactyl.tzmc.cn
http://www.dt0577.cn/news/67773.html

相关文章:

  • 做网站为职业生存不下去百度问答官网
  • 厦门律师网站建设百度搜索风云榜下载
  • 深圳餐饮网站建设大数据平台
  • 建湖做网站需要多少钱百度风云榜小说排行榜
  • 网站建设总流程百度服务
  • 没网站怎么做cpa网络推广运营外包公司
  • wordpress没有用户选项网站seo优化步骤
  • 有名的网站开发工具宁波网站推广找哪家
  • 深圳做网站(官网)域名收录查询
  • 网站优化具体做哪些事情临沂森工木业有限公司
  • 视频解析网站如何做搜索天津百度推广电话号码
  • 百度小程序怎么进入seochinazcom
  • 做哪个网站有效果百度商家平台登录
  • p2p网站怎么做产品品牌推广策划方案
  • 网站如何不需要备案seo诊断分析工具
  • 南昌网站关键词优化网站宣传推广方案
  • 学校网站推广方案网络推广方案模板
  • 自学家装设计从哪入手深圳网站建设推广优化公司
  • 网站服务公司代买空间有无义务百度seo sem
  • 学什么可以做网站线上推广的三种方式
  • 做地方网站数据哪里来域名注册平台
  • 台州国强建设网站全国疫情最新情报
  • 医疗网站搭建站长统计app软件下载
  • 邢台网站建设制作线上培训
  • html做旅游网站sem专员
  • 邢台企业做网站报价深圳排名seo公司
  • 贵阳网站方舟网络最好做一个app软件大概要多少钱
  • 360个人网站建设店铺推广软文案例
  • 住房和城乡建设部网站安广东省优化网站性能
  • 网上商城取名aso优化前景