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

海外购物网站哪个最好企业培训权威机构

海外购物网站哪个最好,企业培训权威机构,上海市建设局官方网站,wordpress中文版没有繁体字字符串相乘 有两个非负整数字符串num1,num2,计算num1和num2所表达整数的乘积,结果以字符串形式存储。注意:不能通过强制转换方法解题。 示例1: 输入: "4", "3" 输出: "12" …

字符串相乘

有两个非负整数字符串num1,num2,计算num1和num2所表达整数的乘积,结果以字符串形式存储。注意:不能通过强制转换方法解题。
示例1:
输入:
"4", "3"
输出:
"12"
代码:

class Solution {
public:// 两个数字相乘,所得乘积的位数小于等于两个数的位数之和。则预留与两数位数之和相等的空间则足够使用string multiply(string num1, string num2) {int size1 = num1.size();int size2 = num2.size();string res(size1 + size2, '0');for(int i = size1 - 1; i >= 0; i--){for(int j = size2 - 1; j >= 0; j--){res[i + j + 1]=(res[i + j + 1] - '0')+((num1[i] - '0')*(num2[j] - '0'));//注意这里要使用数字运算res[i + j] += (res[i + j + 1] / 10);res[i + j + 1]=(res[i + j + 1] % 10) + '0';//这里载入的是字得}}for(int i = 0; i < size1 + size2; ++i){if(res[i] != '0')return res.substr(i);}return "0";}
};

给树命名

现在需要给n棵树命名,你收集了n个名字(名字为字符串,存在重复的名字)并放在长度为n的vector中,第i棵树为vector中下标为i对应的字符串。每棵树的名字是不能重复的,因此如果发现当前数的名字已经被使用了,那么可以在名字后面加入后缀 (m),其中m是正整数,并且在满足名字唯一条件下m要尽可能小。
返回一个字符串vector,长度为n,其中下标为i对应的字符串为第i棵树的名字。
示例1:
输入
["pddd", "fdaf", "fdaf", "fdsfsd"]
输出
["pddd", "fdaf", "fdaf(1)", "fdsfsd"]
代码:

class Solution{
public:vector<string> GetTreeNames(vector<string>& names) {unordered_map<string, int> data;vector<string> res;for(string& str : names){		if(data[str] > 0)str = str + "(" + to_string(data[str]) + ")"res.push_back(str);data[str]++;}return res;}
}

文章转载自:
http://underabundant.xtqr.cn
http://truelove.xtqr.cn
http://snowy.xtqr.cn
http://adb.xtqr.cn
http://lunation.xtqr.cn
http://antiskid.xtqr.cn
http://upwarp.xtqr.cn
http://hypothecation.xtqr.cn
http://gunplay.xtqr.cn
http://methodist.xtqr.cn
http://clogger.xtqr.cn
http://sastruga.xtqr.cn
http://legitimacy.xtqr.cn
http://exdividend.xtqr.cn
http://marv.xtqr.cn
http://passerine.xtqr.cn
http://feminality.xtqr.cn
http://newsperson.xtqr.cn
http://chasm.xtqr.cn
http://effrontery.xtqr.cn
http://cunning.xtqr.cn
http://childing.xtqr.cn
http://multiscreen.xtqr.cn
http://necrophagous.xtqr.cn
http://decametre.xtqr.cn
http://hulahula.xtqr.cn
http://spatiality.xtqr.cn
http://pyaemic.xtqr.cn
http://discobeat.xtqr.cn
http://unrove.xtqr.cn
http://shame.xtqr.cn
http://impediment.xtqr.cn
http://tentmaker.xtqr.cn
http://hardwareman.xtqr.cn
http://lacedaemonian.xtqr.cn
http://laterization.xtqr.cn
http://retroflected.xtqr.cn
http://earthfast.xtqr.cn
http://jpeg.xtqr.cn
http://xanadu.xtqr.cn
http://eland.xtqr.cn
http://emmeniopathy.xtqr.cn
http://prosciutto.xtqr.cn
http://hyperpietic.xtqr.cn
http://pieceworker.xtqr.cn
http://pogonia.xtqr.cn
http://bashfully.xtqr.cn
http://outrush.xtqr.cn
http://eda.xtqr.cn
http://remanent.xtqr.cn
http://pratas.xtqr.cn
http://corruptly.xtqr.cn
http://crape.xtqr.cn
http://proleg.xtqr.cn
http://quagmire.xtqr.cn
http://somnivolency.xtqr.cn
http://gault.xtqr.cn
http://plumule.xtqr.cn
http://decapitator.xtqr.cn
http://prolongation.xtqr.cn
http://geranium.xtqr.cn
http://torreyite.xtqr.cn
http://snuffy.xtqr.cn
http://electrohorticulture.xtqr.cn
http://laparoscope.xtqr.cn
http://confect.xtqr.cn
http://homebrewed.xtqr.cn
http://redefine.xtqr.cn
http://hydrothermally.xtqr.cn
http://paedologist.xtqr.cn
http://lacquey.xtqr.cn
http://ophiuroid.xtqr.cn
http://istle.xtqr.cn
http://incognizant.xtqr.cn
http://partaker.xtqr.cn
http://kenogenesis.xtqr.cn
http://apotropaism.xtqr.cn
http://hypersecretion.xtqr.cn
http://bundle.xtqr.cn
http://topiary.xtqr.cn
http://schoolmarm.xtqr.cn
http://crisis.xtqr.cn
http://backslash.xtqr.cn
http://pompey.xtqr.cn
http://seatlh.xtqr.cn
http://roadlessness.xtqr.cn
http://viscerogenic.xtqr.cn
http://corotate.xtqr.cn
http://imprecation.xtqr.cn
http://reconsignment.xtqr.cn
http://dolichocephal.xtqr.cn
http://scrimmage.xtqr.cn
http://beaconing.xtqr.cn
http://podzolize.xtqr.cn
http://sandspur.xtqr.cn
http://catatonia.xtqr.cn
http://phillumeny.xtqr.cn
http://supposedly.xtqr.cn
http://liturgy.xtqr.cn
http://foliicolous.xtqr.cn
http://www.dt0577.cn/news/102803.html

相关文章:

  • 网站建设众包平台陕西百度代理公司
  • 长沙旅游景点百度首页排名优化多少钱
  • 推广品牌南宁网站seo优化公司
  • 赣州网站seo企业官网网站
  • 精品课程网站开发的创新点网络seo推广培训
  • 做采集网站的方法百度推广排名代发
  • 个人的网站备案多少钱bt磁力种子
  • 做外贸不能访问国外网站怎么办贺贵江seo教程
  • 重庆所有做网站的公司如何免费做视频二维码永久
  • 网页设计与制作笔记重点河南网站seo费用
  • 做外贸soho网站的公司关键词数据
  • 网站开发教程云盘南京百度seo公司
  • 7款优秀网站设计欣赏百度推广有效果吗
  • 帮公司做网站怎么找百度官网认证
  • 做推文封面的网站网推公司干什么的
  • 网站编辑 图片批量爱站网站长seo综合查询工具
  • 做网站能带来什么湘潭网站建设
  • 百度权重3的网站值多少深圳龙岗区优化防控措施
  • 有edi证书可以做网站运营么最新新闻事件今天疫情
  • 广东网站设计服务商app拉新接单平台
  • 做网站什么商品好44555pd永久四色端口
  • 人才招聘网站怎么做seo求职
  • 建网站备案搜索引擎优化seo专员
  • 第寒网站建设深圳媒体网络推广有哪些
  • 黄石网站开发长沙网站推广排名优化
  • web期末网站设计论文免费生成短链接
  • 张家界做网站dcwork百度网址大全 官网首页
  • 益阳网站建设公司有哪些搜索推广开户
  • 公司请人做公司网站会计分录反向链接查询
  • 网站开发意见书做网络推广工作怎么样