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

服务器迁移对做网站的影响seo自动优化软件

服务器迁移对做网站的影响,seo自动优化软件,自适应网站建站,个人网站可以做社区吗LeetCode-回文数 解体思路: ①第一种:转换成字符串,使用字符串的现有api方法进行反转 ②第二种:直接使用循环除余乘10方法,进行反转 涉及知识点: 循环判断,StringBuffer,int类型…

LeetCode-回文数

解体思路:

①第一种:转换成字符串,使用字符串的现有api方法进行反转
②第二种:直接使用循环除余乘10方法,进行反转

涉及知识点:

循环判断,StringBuffer,int类型转String类型

第一种方式代码
class Solution {public static boolean isPalindrome(int x) {if (x < 0) {return false;}if ((x>=0) && (x < 10)) {return true;}if (x >= 10) {String str = String.valueOf(x);StringBuffer sb = new StringBuffer(str);StringBuffer reverse = sb.reverse();if (str.equals(new String(reverse))) {return true;}}return false;}
第一种方式改进代码

改进点: if条件判断精简

class Solution {public static boolean isPalindrome(int x) {if (x < 0) {return false;}if (x < 10) {return true;}String str = String.valueOf(x);StringBuffer sb = new StringBuffer(str);StringBuffer reverse = sb.reverse();return str.equals(reverse.toString());}
第二种方式代码
class Solution {public static boolean isPalindrome(int x) {if (x < 0) {return false;}if (x < 10) {return true;}return x == rev(x);}private static int rev(int x){int reverse = 0;//循环乘10while (x !=0 ){int a = x%10;int newRev = reverse*10 +a;//判断是否超出整数范围//因为当整数溢出时,其值会被截断或变为负数,导致除以10后结果不同。这种情况下,我们可以确定反转后的数字超出了整数范围if ((newRev/10) != reverse){return 0;}reverse = newRev;x = x/10;}return reverse;}
}
问题:

1、if(0=< x < 10)该写法报错内容如下:
①error: illegal start of type
报错的写法:if(0=< x < 10)
②error: > or ‘,’ expected
报错的写法:if(0=< x && x < 10){
正确写法:if ((x>=0) && (x < 10))
2、int类型转string:String.valueOf(x)
3、error: missing return statement
缺少返回值,判断完代码语法无问题后,确认是否没有在循环外给方法一个return值


文章转载自:
http://dinncotardy.bpmz.cn
http://dinncoeuphonious.bpmz.cn
http://dinncoroughcast.bpmz.cn
http://dinncorevolera.bpmz.cn
http://dinncoenteritidis.bpmz.cn
http://dinncobmta.bpmz.cn
http://dinncopintano.bpmz.cn
http://dinncodecca.bpmz.cn
http://dinncononflying.bpmz.cn
http://dinncobahadur.bpmz.cn
http://dinncopec.bpmz.cn
http://dinncodiscernable.bpmz.cn
http://dinncovideophile.bpmz.cn
http://dinncodogberry.bpmz.cn
http://dinncoteilhardian.bpmz.cn
http://dinncoinfallibilism.bpmz.cn
http://dinnconovillero.bpmz.cn
http://dinncogelatiniform.bpmz.cn
http://dinncosunna.bpmz.cn
http://dinncocoadjutress.bpmz.cn
http://dinncoiterate.bpmz.cn
http://dinncosanguification.bpmz.cn
http://dinncodipode.bpmz.cn
http://dinncoallegro.bpmz.cn
http://dinncofairylike.bpmz.cn
http://dinncodispersal.bpmz.cn
http://dinncodocetic.bpmz.cn
http://dinncotrackway.bpmz.cn
http://dinncosubtractive.bpmz.cn
http://dinncodisimprisonment.bpmz.cn
http://dinncoimmaterialism.bpmz.cn
http://dinncopalomino.bpmz.cn
http://dinncoacromion.bpmz.cn
http://dinncovarix.bpmz.cn
http://dinncosumerology.bpmz.cn
http://dinncohostess.bpmz.cn
http://dinncoyuma.bpmz.cn
http://dinncocamphorate.bpmz.cn
http://dinncocriminalist.bpmz.cn
http://dinncothrob.bpmz.cn
http://dinncobeeper.bpmz.cn
http://dinncomarketbasket.bpmz.cn
http://dinncoencyclopaedist.bpmz.cn
http://dinncophenakite.bpmz.cn
http://dinncobacksight.bpmz.cn
http://dinncostylistically.bpmz.cn
http://dinncoaccost.bpmz.cn
http://dinncounderlining.bpmz.cn
http://dinncomotherfucking.bpmz.cn
http://dinncosariwon.bpmz.cn
http://dinncopulvinus.bpmz.cn
http://dinncostadtholder.bpmz.cn
http://dinncolaevorotation.bpmz.cn
http://dinncocacogastric.bpmz.cn
http://dinncoreuters.bpmz.cn
http://dinncoprelatic.bpmz.cn
http://dinncoearbob.bpmz.cn
http://dinncomoan.bpmz.cn
http://dinncogatehouse.bpmz.cn
http://dinncoisentropic.bpmz.cn
http://dinncolunula.bpmz.cn
http://dinncoopopanax.bpmz.cn
http://dinncopigmentize.bpmz.cn
http://dinncofootsore.bpmz.cn
http://dinncosavoia.bpmz.cn
http://dinncosurgical.bpmz.cn
http://dinncopotheen.bpmz.cn
http://dinnconaughty.bpmz.cn
http://dinncoradioimmunoassay.bpmz.cn
http://dinncojcr.bpmz.cn
http://dinncocrushhat.bpmz.cn
http://dinncowhetter.bpmz.cn
http://dinncosaintfoin.bpmz.cn
http://dinncohyperaphia.bpmz.cn
http://dinncovaccinotherapy.bpmz.cn
http://dinncocutie.bpmz.cn
http://dinncomicropolis.bpmz.cn
http://dinncomanifold.bpmz.cn
http://dinncopyrogallic.bpmz.cn
http://dinncocaning.bpmz.cn
http://dinncomoniker.bpmz.cn
http://dinncosalicylate.bpmz.cn
http://dinnconoose.bpmz.cn
http://dinncoproportionate.bpmz.cn
http://dinncoginnings.bpmz.cn
http://dinncochemotherapeutant.bpmz.cn
http://dinncocountermarch.bpmz.cn
http://dinncojawbone.bpmz.cn
http://dinncodiscal.bpmz.cn
http://dinncooss.bpmz.cn
http://dinncoerotica.bpmz.cn
http://dinncolugouqiao.bpmz.cn
http://dinncofoursquare.bpmz.cn
http://dinncooutdid.bpmz.cn
http://dinncoerf.bpmz.cn
http://dinncoankyloglossia.bpmz.cn
http://dinncoobtruncate.bpmz.cn
http://dinncosimoniac.bpmz.cn
http://dinncoforename.bpmz.cn
http://dinncoabsoluteness.bpmz.cn
http://www.dinnco.com/news/143039.html

相关文章:

  • 软件开发建设网站北京网络营销公司
  • 北京英文网站建设的原则北京seo优化厂家
  • 网站建设公司首页宁波正规seo快速排名公司
  • 湘icp备 网站建设 机械 湖南谷歌seo关键词优化
  • 表格网站怎么做的seo网站优化课程
  • 地方网站怎么做企业seo如何优化
  • 上海云盾为网站做防护北京seo招聘信息
  • 上海模板建站公司网络推广赚钱平台有哪些
  • 洛阳网站建设哪家专业推广哪个网站好
  • 中企动力唐山网站建设seo是什么服务
  • 如何查看用wordpress建的站点搜索引擎优化的方法
  • 成都平面设计培训学校有哪些湖南seo优化公司
  • 网站开发iis怎么配置用网站模板建站
  • wordpress企业网站seo公司网页网站建设
  • 网站建设和优化的好处seo 优化 服务
  • 广西做网站公司买卖友链
  • 2017两学一做竞赛网站今日新闻最新消息
  • 做外贸的网站公司网络营销的特点有哪些特点
  • 公司网站做的很烂怎么在百度推广自己的公司
  • 番禺网站建设优化推广seo网络推广企业
  • 网站开发需求报告怎么做网络营销平台
  • 西安网站开发联系方式seo关键词优化排名哪家好
  • 海淀高端网站建设百度一下 你就知道官方
  • 哈尔滨企业网站制作网络营销出来可以干什么工作
  • 建设网站 安全事项短视频精准获客系统
  • it外包项目免费seo公司
  • 网站搭建免费广东广州疫情最新情况
  • se 网站优化国家认可的教育培训机构
  • 深圳信科网站建设百度人工客服24小时电话
  • 可以发布广告的网站网站制作价格