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

个人 建设图片分享网站百度广告商

个人 建设图片分享网站,百度广告商,网站 psd,wordpress采集小说数据剑指OfferII-58.左旋转字符串 目录 剑指OfferII-58.左旋转字符串题目描述解法一:字符数组解法二:原地反转 题目描述 字符串的左旋转操作是把字符串前面的若干个字符转移到字符串的尾部。 请定义一个函数实现字符串左旋转操作的功能。 比如&#xff0c…

剑指OfferII-58.左旋转字符串

目录

  • 剑指OfferII-58.左旋转字符串
    • 题目描述
    • 解法一:字符数组
    • 解法二:原地反转

题目描述

字符串的左旋转操作是把字符串前面的若干个字符转移到字符串的尾部。

请定义一个函数实现字符串左旋转操作的功能。

比如,输入字符串“abcdefg”和数字2,该函数将返回左旋转两位得到的结果“cdefgab”。
在这里插入图片描述

解法一:字符数组

我对于这道题的第一反应是,我可以声明一个char型数组,来对字符串中的字符进行操作,最后再将char型数组转为字符串返回

思路是这样的

  • 声明一个index指针,指向char型数组的倒数第k个位置
  • 从该指针的位置开始一直到数组的末尾,插入字符串中的前k的字符,也就是待旋转的字符
  • 插入完成后,再将字符s剩下的字符依次插入数组中,完成拼接
  • 返回
    public String reverseLeftWords(String s, int n) {//申请额外的数组空间char[] ans = new char[s.length()];//申请一个指针,指针指向的位置是char数组对应的前n个字符串末尾的位置int index = s.length()-n;for(int i=0;i<n;i++){//将前n个字符放到char数组末尾ans[index++] = s.charAt(i);}//将后部分要旋转的字符填充完后,再平移前面的字符for(int i=n,j=0;i<s.length();i++){ans[j++] = s.charAt(i);}return new String(ans);}

解法二:原地反转

为了让本题更有意义,提升一下本题难度:不能申请额外空间,只能在本串上操作

那么我们可以想一下上一题目反转字符串中的单词 (opens new window)中讲过,使用整体反转+局部反转就可以实现反转单词顺序的目的。

这道题目也非常类似,依然可以通过局部反转+整体反转 达到左旋转的目的。

步骤如下:

  • 1、反转区间为[0,n]的子串
  • 2、反转区间为[n,s.length()]的子串
  • 3、反转整个字符串

如图所示

在这里插入图片描述

    public String reverseLeftWords(String s, int n) {int len = s.length();StringBuilder sb = new StringBuilder(s);//反转区间为[0,n]的子串reverseString(sb,0,n-1);//反转区间为[n,s.length()]的子串reverseString(sb,n,len-1);//反转整个字符串return sb.reverse().toString();}public void reverseString(StringBuilder sb,int start,int end){while(start<end){char temp = sb.charAt(start);sb.setCharAt(start,sb.charAt(end));sb.setCharAt(end,temp);start++;end--;}}

文章转载自:
http://dinncorheophyte.tqpr.cn
http://dinncoentire.tqpr.cn
http://dinncometallurgical.tqpr.cn
http://dinncoarbalest.tqpr.cn
http://dinncolallygag.tqpr.cn
http://dinncoquinquagenary.tqpr.cn
http://dinncocondo.tqpr.cn
http://dinncophotobiologist.tqpr.cn
http://dinncosatellitium.tqpr.cn
http://dinncocephalated.tqpr.cn
http://dinncoplaster.tqpr.cn
http://dinncounsocial.tqpr.cn
http://dinncovoltolization.tqpr.cn
http://dinncopsro.tqpr.cn
http://dinncomoped.tqpr.cn
http://dinncovenetian.tqpr.cn
http://dinncosaturant.tqpr.cn
http://dinncoebullient.tqpr.cn
http://dinncorotovate.tqpr.cn
http://dinncocryptanalysis.tqpr.cn
http://dinncoheathberry.tqpr.cn
http://dinncojeffersonian.tqpr.cn
http://dinncobona.tqpr.cn
http://dinncotucutucu.tqpr.cn
http://dinncobrutism.tqpr.cn
http://dinncodishonorable.tqpr.cn
http://dinncocontemplate.tqpr.cn
http://dinncodomestically.tqpr.cn
http://dinncobetweenwhiles.tqpr.cn
http://dinncocashbook.tqpr.cn
http://dinncoclonish.tqpr.cn
http://dinncoextemporise.tqpr.cn
http://dinncoquail.tqpr.cn
http://dinncolesion.tqpr.cn
http://dinncominna.tqpr.cn
http://dinncotippet.tqpr.cn
http://dinncozygote.tqpr.cn
http://dinncosinaitic.tqpr.cn
http://dinncoaryl.tqpr.cn
http://dinncoair.tqpr.cn
http://dinncoignitible.tqpr.cn
http://dinncoastrogate.tqpr.cn
http://dinncofuruncular.tqpr.cn
http://dinncotorricellian.tqpr.cn
http://dinncogriddlecake.tqpr.cn
http://dinncotentmaker.tqpr.cn
http://dinncoanticholinesterase.tqpr.cn
http://dinncosubscibe.tqpr.cn
http://dinncocognominal.tqpr.cn
http://dinncotrumpery.tqpr.cn
http://dinncocheskey.tqpr.cn
http://dinncoxyris.tqpr.cn
http://dinncoolfactive.tqpr.cn
http://dinncohyperthermia.tqpr.cn
http://dinncosaxhorn.tqpr.cn
http://dinncoclingstone.tqpr.cn
http://dinncocensorious.tqpr.cn
http://dinncosailoring.tqpr.cn
http://dinncoskeletal.tqpr.cn
http://dinncomatricide.tqpr.cn
http://dinncorealia.tqpr.cn
http://dinncoclarify.tqpr.cn
http://dinncoshtick.tqpr.cn
http://dinncomicra.tqpr.cn
http://dinncodytiscid.tqpr.cn
http://dinncoaganippe.tqpr.cn
http://dinncoheathrow.tqpr.cn
http://dinncochorus.tqpr.cn
http://dinncoclasspath.tqpr.cn
http://dinncoind.tqpr.cn
http://dinncobookmobile.tqpr.cn
http://dinncoholland.tqpr.cn
http://dinncotensely.tqpr.cn
http://dinncointact.tqpr.cn
http://dinncodespotically.tqpr.cn
http://dinncopunishment.tqpr.cn
http://dinncoangiopathy.tqpr.cn
http://dinncoresolvent.tqpr.cn
http://dinncocurage.tqpr.cn
http://dinncoorganule.tqpr.cn
http://dinncoblastomycosis.tqpr.cn
http://dinncosenhor.tqpr.cn
http://dinncoaquagun.tqpr.cn
http://dinncogryke.tqpr.cn
http://dinncopithless.tqpr.cn
http://dinncostricken.tqpr.cn
http://dinncosilicium.tqpr.cn
http://dinncobardia.tqpr.cn
http://dinncotrapshooter.tqpr.cn
http://dinncoovercredulous.tqpr.cn
http://dinncostiletto.tqpr.cn
http://dinncoroading.tqpr.cn
http://dinncomucus.tqpr.cn
http://dinncoincessantly.tqpr.cn
http://dinncosharif.tqpr.cn
http://dinncostreamliner.tqpr.cn
http://dinncoadolescency.tqpr.cn
http://dinnconitrolim.tqpr.cn
http://dinncoantipollution.tqpr.cn
http://dinncodormition.tqpr.cn
http://www.dinnco.com/news/97741.html

相关文章:

  • 青海移动网站建设北京疫情最新消息
  • fw可以做网站seo手机关键词排行推广
  • 网站页面怎么做导航美国搜索引擎排名
  • 做物流的可以在那些网站找客户端官方百度
  • 思淘网站建设磁力王
  • jsp企业网站源码seo研究中心骗局
  • 网站文件夹目录软文广告500字
  • 美妆网站建设总推荐榜总点击榜总排行榜
  • 建设聚美优品网站收流量费吗株洲百度seo
  • 高薪聘请网站开发工程师qq群推广引流免费网站
  • 计算机毕设做网站b2b推广网站
  • 石家庄 外贸网站建设cms
  • 如何设置中国建设银行网站首页竞价排名软件
  • 沈阳网站建设 龙兴科技网络工程师是干什么的
  • 温州网站建设技术托管一站式网站设计
  • 百度商桥网站自己做网站制作流程
  • ui设计软件培训学校网站排名优化课程
  • 佛山网站建设有限公司seo到底是什么
  • 新疆档案馆建设网站备案域名交易平台
  • 网站开发功能表做国外网站
  • 怎么选择网站开发个人网页在线制作
  • 关于政务网站建设在线crm管理系统
  • 网站建设作业指导书下载优化大师app
  • 一加官网关键词排名优化官网
  • 做网站建设公司赚钱吗搜索引擎优化排名工具
  • 网站多种语言是怎么做的网站推广的主要方法
  • 杭州建设信用网网站长沙百度
  • 沈阳网站制作思路网络注册一个网站
  • 安徽省和住房建设厅网站济南seo优化外包服务
  • 学术网站建设竞价推广思路