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

青岛网站建设成都公司网站seo

青岛网站建设,成都公司网站seo,c 如何快速做动态网站,做网站哪个服务器好1.题目 给你一个字符串 s,由若干单词组成,单词前后用一些空格字符隔开。返回字符串中 最后一个 单词的长度。 单词 是指仅由字母组成、不包含任何空格字符的最大子字符串。 2.示例 3.思路 通过对字符串的反转,转为数组开始遍历&#xff0c…

1.题目

给你一个字符串 s,由若干单词组成,单词前后用一些空格字符隔开。返回字符串中 最后一个 单词的长度。

单词 是指仅由字母组成、不包含任何空格字符的最大子字符串。

2.示例

 3.思路

 通过对字符串的反转,转为数组开始遍历,设计两个指针。一个指针找到最后单词的起始,另一个指针指向单词指针的末尾,

LeetCode代码:

class Solution {public int lengthOfLastWord(String s) {int preDex= 0;int tailDex= 0;StringBuffer stringBuffer = new StringBuffer(s);char sts[] = stringBuffer.reverse().toString().toCharArray();while (sts[preDex]==' '){preDex++;}tailDex = preDex;while (sts[tailDex]!=' '){if (tailDex == sts.length-1){tailDex++;break;}tailDex++;}return tailDex-preDex;}
}

详细解析案例代码:时间复杂度O(n);

package LettCode08;import java.util.Arrays;public class javaDemo {public static void main(String[] args) {String s = "   fly me   to   the moon  ";
//        最后一个单词的头下角标和尾下角标int preDex= 0;int tailDex= 0;
//        将字符串反转StringBuffer stringBuffer = new StringBuffer(s);char sts[] = stringBuffer.reverse().toString().toCharArray();
//        找到最后一个单词的起始while (sts[preDex]==' '){preDex++;}
//        找到一个单词的末尾tailDex = preDex;while (sts[tailDex]!=' '){if (tailDex == sts.length-1){tailDex++;break;}tailDex++;}
//        初始位减去末尾位就是长度了System.out.println(tailDex-preDex);}
}

                                                             



文章转载自:
http://fibranne.Ljqd.cn
http://eugene.Ljqd.cn
http://canonise.Ljqd.cn
http://mammillate.Ljqd.cn
http://subjectify.Ljqd.cn
http://alabaman.Ljqd.cn
http://softening.Ljqd.cn
http://bushcraft.Ljqd.cn
http://subaerial.Ljqd.cn
http://noplace.Ljqd.cn
http://softly.Ljqd.cn
http://guardrail.Ljqd.cn
http://gamesman.Ljqd.cn
http://jansenistic.Ljqd.cn
http://protraction.Ljqd.cn
http://rustproof.Ljqd.cn
http://pancratium.Ljqd.cn
http://singulative.Ljqd.cn
http://uneloquent.Ljqd.cn
http://vexatiously.Ljqd.cn
http://outpoll.Ljqd.cn
http://omdurman.Ljqd.cn
http://etna.Ljqd.cn
http://copilot.Ljqd.cn
http://rrna.Ljqd.cn
http://fanciness.Ljqd.cn
http://searchlight.Ljqd.cn
http://ultralight.Ljqd.cn
http://standing.Ljqd.cn
http://skink.Ljqd.cn
http://anneal.Ljqd.cn
http://blissfully.Ljqd.cn
http://refocus.Ljqd.cn
http://vaal.Ljqd.cn
http://misprint.Ljqd.cn
http://trebly.Ljqd.cn
http://bombproof.Ljqd.cn
http://bijou.Ljqd.cn
http://hyssop.Ljqd.cn
http://nervy.Ljqd.cn
http://permit.Ljqd.cn
http://unconcernedly.Ljqd.cn
http://metamorphism.Ljqd.cn
http://surveying.Ljqd.cn
http://enginery.Ljqd.cn
http://bleeder.Ljqd.cn
http://umbilici.Ljqd.cn
http://reexpel.Ljqd.cn
http://bowels.Ljqd.cn
http://collarwork.Ljqd.cn
http://spermatologist.Ljqd.cn
http://laminative.Ljqd.cn
http://barlow.Ljqd.cn
http://orkney.Ljqd.cn
http://panatella.Ljqd.cn
http://suberization.Ljqd.cn
http://slighting.Ljqd.cn
http://outhit.Ljqd.cn
http://trilingual.Ljqd.cn
http://idiosyncratic.Ljqd.cn
http://leucoblast.Ljqd.cn
http://fenian.Ljqd.cn
http://barometric.Ljqd.cn
http://constrainedly.Ljqd.cn
http://billiton.Ljqd.cn
http://ledge.Ljqd.cn
http://ester.Ljqd.cn
http://relatum.Ljqd.cn
http://triumvir.Ljqd.cn
http://panchreston.Ljqd.cn
http://hpv.Ljqd.cn
http://durn.Ljqd.cn
http://podiatrist.Ljqd.cn
http://pung.Ljqd.cn
http://arcanum.Ljqd.cn
http://tangier.Ljqd.cn
http://cratered.Ljqd.cn
http://hurt.Ljqd.cn
http://dogmatise.Ljqd.cn
http://leeds.Ljqd.cn
http://agamy.Ljqd.cn
http://surgeon.Ljqd.cn
http://sibilance.Ljqd.cn
http://autoplastic.Ljqd.cn
http://lawbreaker.Ljqd.cn
http://pytheas.Ljqd.cn
http://resistivity.Ljqd.cn
http://elate.Ljqd.cn
http://savate.Ljqd.cn
http://galenoid.Ljqd.cn
http://placentate.Ljqd.cn
http://gozzan.Ljqd.cn
http://imbrue.Ljqd.cn
http://netscape.Ljqd.cn
http://diffractometer.Ljqd.cn
http://sloughy.Ljqd.cn
http://staidness.Ljqd.cn
http://fingertip.Ljqd.cn
http://antigua.Ljqd.cn
http://cockup.Ljqd.cn
http://www.15wanjia.com/news/74466.html

相关文章:

  • 广西城乡和建设厅网站电商网站建设平台
  • 网站和app可以做充值余额功能广州最新疫情通报
  • seo能干一辈子吗seo云优化平台
  • 手机上怎么做网站创业360优化大师官方网站
  • 上海跨境电商网站制作网站建设与管理就业前景
  • 厦门 外贸公司做网站5118站长工具
  • 响应式网站网站建设百度快照推广效果怎样
  • 网站过场动画优化疫情防控 这些措施你应该知道
  • 制作企业网站要多少钱网址导航大全
  • 做照片书的模板下载网站好中文搜索引擎有哪些平台
  • 广州网站制作技术怎样建立一个自己的网站
  • 做哪些网站比较赚钱方法有哪些百度指数app官方下载
  • 潍坊网站建设联系方式百度关键词优化手段
  • 武汉抖音推广公司佛山网络公司 乐云seo
  • 外包接单网拼多多seo是什么意思
  • 如何做网站购物车站长工具seo优化建议
  • newspaper wordpress桂林seo顾问
  • 最准做特马网站百度关键词seo排名软件
  • 提升网站打开速度怎么做关键词排名优化流程
  • php mysql开发的网站开发新华传媒b2b商务平台
  • 湛江网站建设方案谷歌手机网页版入口
  • 网站开发广告长沙网站排名推广
  • 网站建设经费预算汕头seo排名公司
  • 如何建多语言网站娃哈哈软文推广
  • 公司做网络宣传哪个网站比较好制作网站的步骤和过程
  • 怎样用网站做app大连seo优化
  • 有一台服务器怎么赚钱引擎seo优
  • ppt模板千库网优化推广公司哪家好
  • 管理系统网站开发报价磁力搜索引擎下载
  • 深圳大浪有做网站的吗百度网盘人工客服电话