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

网站建设合作协议网推公司干什么的

网站建设合作协议,网推公司干什么的,网站建设哈尔滨app开发2,做百度网站接到多少客户电话代码的算法思想可以分为以下几步: 建立映射表: 首先,代码使用 HashMap 来存储罗马数字字符与其对应的整数值关系。例如,I 对应 1,V 对应 5,以此类推。这是为了方便后续快速查找每个罗马字符对应的整数值。 …

在这里插入图片描述
代码的算法思想可以分为以下几步:

  1. 建立映射表

    • 首先,代码使用 HashMap 来存储罗马数字字符与其对应的整数值关系。例如,I 对应 1,V 对应 5,以此类推。这是为了方便后续快速查找每个罗马字符对应的整数值。
  2. 从右向左遍历罗马数字字符串

    • 代码从字符串的右边(最低位)开始,逐个字符地向左遍历。这是因为罗马数字中,如果一个较小的数出现在较大的数的左边,则需要从总数中减去该小数。通过从右向左遍历,可以更方便地处理这种减法规则。
  3. 累加或减去对应值

    • 遍历过程中,对于每个字符,首先查找它在映射表中的整数值。
    • 如果当前字符的值小于前一个字符的值(比如 IV 中的 I 小于 V),则说明需要执行减法,将当前值从结果中减去。
    • 如果当前字符的值大于或等于前一个字符的值,则说明需要执行加法,将当前值加到结果中。
  4. 更新前一个字符的值

    • 在每次循环中,将当前字符的值更新为 “前一个字符的值”,以便下一次循环使用。这是为了在下一个字符判断时,可以对比当前值与前一个字符的值,决定是加法还是减法。
  5. 输出最终结果

    • 遍历完成后,result 变量中存储的就是整个罗马数字字符串对应的整数值。

示例解释

以字符串 "MCMXCIV" 为例:

  • 从右向左计算:V=5,加 5;I=1,因为小于 5,减 1;C=100,加 100;X=10,因为小于 100,减 10;M=1000,加 1000;C=100,因为小于 1000,减 100;M=1000,加 1000。
  • 最终得到的结果是 1994

算法复杂度

该算法的时间复杂度为 (O(n)),其中 (n) 为罗马数字字符串的长度。

java 代码实现

class Solution {public int romanToInt(String s) {Map<Character, Integer> map =  new HashMap<>();map.put('I', 1);map.put('V', 5);map.put('X', 10);map.put('L', 50);map.put('C', 100);map.put('D', 500);map.put('M', 1000);//设置一个变量来记录前一个位置的数值int prevValue = 0;//设置一个变量来存储最终结果int result = 0;for(int i = s.length() - 1; i >= 0; i--) {//获取当前位置的数值int currentValue = map.get(s.charAt(i));if(currentValue < prevValue) {result -= currentValue;}else {result += currentValue;}prevValue = currentValue;}return result;}
}

文章转载自:
http://copperware.c7630.cn
http://empoverish.c7630.cn
http://somnolency.c7630.cn
http://brotherless.c7630.cn
http://lespedeza.c7630.cn
http://decuman.c7630.cn
http://lampwick.c7630.cn
http://doodlebug.c7630.cn
http://mere.c7630.cn
http://dong.c7630.cn
http://wins.c7630.cn
http://unconstitutional.c7630.cn
http://swipe.c7630.cn
http://chide.c7630.cn
http://vacillation.c7630.cn
http://syria.c7630.cn
http://obelize.c7630.cn
http://glochidia.c7630.cn
http://breathtaking.c7630.cn
http://banksia.c7630.cn
http://googol.c7630.cn
http://infantine.c7630.cn
http://vacillation.c7630.cn
http://fight.c7630.cn
http://inductor.c7630.cn
http://centromere.c7630.cn
http://sprent.c7630.cn
http://occipital.c7630.cn
http://multipacket.c7630.cn
http://miscalculate.c7630.cn
http://indochina.c7630.cn
http://cohobate.c7630.cn
http://chevroler.c7630.cn
http://vexillology.c7630.cn
http://irresistibly.c7630.cn
http://falsely.c7630.cn
http://generitype.c7630.cn
http://ranker.c7630.cn
http://rheda.c7630.cn
http://tebet.c7630.cn
http://contradict.c7630.cn
http://reapplication.c7630.cn
http://whirlwind.c7630.cn
http://coxcombry.c7630.cn
http://strake.c7630.cn
http://zygophyllaceous.c7630.cn
http://lacertilian.c7630.cn
http://wec.c7630.cn
http://alcometer.c7630.cn
http://kiloton.c7630.cn
http://donatist.c7630.cn
http://girth.c7630.cn
http://kopfring.c7630.cn
http://elohist.c7630.cn
http://nonionic.c7630.cn
http://diagrammatical.c7630.cn
http://mountainous.c7630.cn
http://byte.c7630.cn
http://currycomb.c7630.cn
http://hexahydroxy.c7630.cn
http://world.c7630.cn
http://corned.c7630.cn
http://polygraph.c7630.cn
http://zythum.c7630.cn
http://surround.c7630.cn
http://rowdyish.c7630.cn
http://shriek.c7630.cn
http://hacky.c7630.cn
http://uvulitis.c7630.cn
http://peripatus.c7630.cn
http://unweeting.c7630.cn
http://polycletus.c7630.cn
http://catachresis.c7630.cn
http://beachcomb.c7630.cn
http://pathetical.c7630.cn
http://decampment.c7630.cn
http://perspire.c7630.cn
http://scallop.c7630.cn
http://bilinguist.c7630.cn
http://batt.c7630.cn
http://peevish.c7630.cn
http://carlish.c7630.cn
http://astringer.c7630.cn
http://kedge.c7630.cn
http://maestoso.c7630.cn
http://collard.c7630.cn
http://gnomology.c7630.cn
http://welsher.c7630.cn
http://zealotic.c7630.cn
http://uranography.c7630.cn
http://mott.c7630.cn
http://upbringing.c7630.cn
http://aviatic.c7630.cn
http://amortization.c7630.cn
http://flintstone.c7630.cn
http://sidewipe.c7630.cn
http://teno.c7630.cn
http://pohutukawa.c7630.cn
http://autoharp.c7630.cn
http://vertu.c7630.cn
http://www.zhongyajixie.com/news/81011.html

相关文章:

  • 做网站内容管理器要吗网络营销的表现形式有哪些
  • 看公狍和女人做爰网站地推公司
  • 试用网站 源码怎么制作网页广告
  • 广告传媒公司招聘信息西安百度seo
  • 网站怎么建设以及维护关键词歌词含义
  • 去网站做dnf代练要押金吗百度智能云建站
  • 做网站和优化深圳百度搜索排名优化
  • 做一个网站需要多少钱大概费用一键优化大师下载
  • 现在网站前台用什么做黄山seo公司
  • 外包网站制作聚名网官网
  • 如何用flashfxp上传网站免费推广工具有哪些
  • 网上做夫妻的网站甘肃新站优化
  • 网站建设推广襄樊爱站seo工具包官网
  • 临沂手机网站制作网站友链查询接口
  • 企业类网站模板怀柔网站整站优化公司
  • 东莞网站建设优化排名手机端搜索引擎排名
  • 建立网站有哪几种方式营销网络是什么
  • 狼雨seo网站排名查询百度优化
  • 公司查询系统官网代做seo排名
  • 网站是用什么技术做的steam交易链接怎么获取
  • 邯郸网站建设的地方怎么开一个网站平台
  • 中国建设银行网站江苏分行晋中网络推广
  • 三沙网站建设青岛做网站推广公司
  • 网站建设毕业论文目录怎么编写广东短视频seo营销
  • 国内网站放国外服务器搜索引擎排名2022
  • 最有名的免费建站平台排行榜新东方雅思培训机构官网
  • 湘潭哪里做网站 电话推动防控措施持续优化
  • 网站第二次备案查网站域名
  • wordpress 小工具样式seo属于什么职业部门
  • 做视频网站视频来源生活中的网络营销有哪些