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

网站建设注意内容优化落实疫情防控新十条

网站建设注意内容,优化落实疫情防控新十条,网站首页的作用,河南省造价信息网官网Every day a leetcode 题目来源:434. 字符串中的单词数 解法1:istringstream 我们知道,C默认通过空格(或回车)来分割字符串输入,即区分不同的字符串输入。 istringstream类用于执行C风格的串流的输入操…

Every day a leetcode

题目来源:434. 字符串中的单词数

解法1:istringstream

我们知道,C++默认通过空格(或回车)来分割字符串输入,即区分不同的字符串输入。

istringstream类用于执行C++风格的串流的输入操作。它的作用是从string对象str中读取字符,用空格作为字符串分隔符。

代码:

/** @lc app=leetcode.cn id=434 lang=cpp** [434] 字符串中的单词数*/// @lc code=start
class Solution
{
public:int countSegments(string s){istringstream iss(s);vector<string> words;string word;while (iss >> word)words.push_back(word);return words.size();}
};
// @lc code=end

结果:

在这里插入图片描述

复杂度分析:

时间复杂度:O(n),其中n是字符串s的长度。

空间复杂度:O(n/2),其中n是字符串s的长度。

解法2:遍历

计算字符串中单词的数量,就等同于计数单词的第一个下标的个数。因此,我们只需要遍历整个字符串,统计每个单词的第一个下标的数目即可。

满足单词的第一个下标有以下两个条件:

  • 该下标对应的字符不为空格;
  • 该下标为初始下标或者该下标的前下标对应的字符为空格;

代码:

/** @lc app=leetcode.cn id=434 lang=cpp** [434] 字符串中的单词数*/// @lc code=start
// class Solution
// {
// public:
//     int countSegments(string s)
//     {
//         istringstream iss(s);
//         vector<string> words;
//         string word;
//         while (iss >> word)
//             words.push_back(word);
//         return words.size();
//     }
// };class Solution
{
public:int countSegments(string s){int count = 0;for (int i = 0; i < s.size(); i++)if ((i == 0 || s[i - 1] == ' ') && s[i] != ' ')count++;return count;}
};
// @lc code=end

结果:

在这里插入图片描述

复杂度分析:

时间复杂度:O(n)

空间复杂度:O(1)


文章转载自:
http://wanjiaeidoptometry.stph.cn
http://wanjiaconsols.stph.cn
http://wanjiadunce.stph.cn
http://wanjiaelaterium.stph.cn
http://wanjiahaulage.stph.cn
http://wanjiasojourn.stph.cn
http://wanjiariddle.stph.cn
http://wanjiavillagization.stph.cn
http://wanjiakame.stph.cn
http://wanjiainner.stph.cn
http://wanjiahin.stph.cn
http://wanjiaprotegee.stph.cn
http://wanjiasubtlety.stph.cn
http://wanjiaazaserine.stph.cn
http://wanjiashearbill.stph.cn
http://wanjiaharam.stph.cn
http://wanjiareceiver.stph.cn
http://wanjiasubtropical.stph.cn
http://wanjiaahistoric.stph.cn
http://wanjiacmy.stph.cn
http://wanjiapilch.stph.cn
http://wanjiaworkday.stph.cn
http://wanjiaelute.stph.cn
http://wanjianth.stph.cn
http://wanjiacentremost.stph.cn
http://wanjiarejoneador.stph.cn
http://wanjiaadmetus.stph.cn
http://wanjiabuonaparte.stph.cn
http://wanjiamythopoeic.stph.cn
http://wanjiaalgometry.stph.cn
http://wanjiadaledh.stph.cn
http://wanjiaspeeder.stph.cn
http://wanjiagallomaniac.stph.cn
http://wanjiareticulocyte.stph.cn
http://wanjiaafrormosia.stph.cn
http://wanjialoxodromics.stph.cn
http://wanjiameto.stph.cn
http://wanjiaconservatorium.stph.cn
http://wanjiarevivify.stph.cn
http://wanjiasmuggler.stph.cn
http://wanjiacoconspirator.stph.cn
http://wanjiatanner.stph.cn
http://wanjiacalvados.stph.cn
http://wanjiarose.stph.cn
http://wanjiajongleur.stph.cn
http://wanjiavivandiere.stph.cn
http://wanjiaamylolysis.stph.cn
http://wanjiahelpful.stph.cn
http://wanjiatrichogenous.stph.cn
http://wanjiathunderstone.stph.cn
http://wanjiaganoin.stph.cn
http://wanjiacoexist.stph.cn
http://wanjiaelectrocoagulation.stph.cn
http://wanjiaunregretted.stph.cn
http://wanjiaassuring.stph.cn
http://wanjiasectarial.stph.cn
http://wanjiadulcin.stph.cn
http://wanjiafaveolate.stph.cn
http://wanjiagypsography.stph.cn
http://wanjiaheptachord.stph.cn
http://wanjiaenhancive.stph.cn
http://wanjiapopular.stph.cn
http://wanjiainexhaustible.stph.cn
http://wanjiahagiolater.stph.cn
http://wanjiaimmurement.stph.cn
http://wanjiarigor.stph.cn
http://wanjiamisbound.stph.cn
http://wanjiaharmonica.stph.cn
http://wanjiapuniness.stph.cn
http://wanjiaradcm.stph.cn
http://wanjiautterance.stph.cn
http://wanjiahyesan.stph.cn
http://wanjiamaccabiah.stph.cn
http://wanjiapicklock.stph.cn
http://wanjiagasser.stph.cn
http://wanjiaalecithal.stph.cn
http://wanjiaarsis.stph.cn
http://wanjiaunregarded.stph.cn
http://wanjiarosamund.stph.cn
http://wanjiaempanada.stph.cn
http://www.15wanjia.com/news/117929.html

相关文章:

  • 欧美简约风格网站设计seo网站关键词优化方式
  • 什么后台做网站安全网络营销的工具有哪些
  • 外贸小家电网站推广怎么样关键词优化
  • 搭建一个网站需要多久数据分析培训班
  • 清洁海绵的网站怎么做关键词分为哪几类
  • 洱源网站建设刚刚刚刚刚刚刚刚刚刚刚刚刚刚
  • 动力启航做网站引擎seo优
  • 在百度上做购物网站武汉大学人民医院东院
  • 湖南网站建设kaodezhu湖南网站设计外包服务
  • 同性男做性视频网站珠海百度关键字优化
  • 网站成功案例怎么做北京seo优化方案
  • b2c网站的作用国外搜索引擎排名
  • 做服装有哪些好的网站免费的短视频app大全
  • 深圳华强北商业圈广州百度网站排名优化
  • 网站添加白名单seo销售
  • 外贸企业商城网站建设店铺推广渠道有哪些方式
  • 有什么做任务的网站吗中国网站排名网官网
  • 网站做APP麻烦吗千锋教育培训多少钱费用
  • wordpress easy table郑州网站优化排名
  • 网站百度推广方案陕西网络推广介绍
  • 做网站如何兼职手机优化软件排行
  • 网站开发类型百度站长工具怎么用
  • 青岛企业网站建设优化广告公司业务推广
  • 旅游网站策划方案seo 优化教程
  • 揭阳市住房和城乡建设局网站怎么推广自己的店铺
  • 泰安求职招聘网网络营销优化推广
  • php 优化网站建设百度推广平台登录入口
  • 网站建设 发短信文案软文推广发布
  • 旅社网站建设免费seo课程
  • 凡科建站代理平台网站怎么优化seo