首页 > 代码库 > JAVA用标准库自己写一个字符串翻转方法,翻转字符串中字母非单词
JAVA用标准库自己写一个字符串翻转方法,翻转字符串中字母非单词
例如输入:I love programming
输出:I evol gnimmargorp
算法思路就是:根据空格提取每一个单词,存放在一个buffer里进行翻转处理,再添加到新的字符串。最后新的字符串就完成整个方法过程。
public class ReserveString { public String reserve(String sentence){ String backS = new String(); StringBuffer temp = new StringBuffer(); int i=0; while (i<sentence.length()-1 && sentence.charAt(i)!=' '){ temp.append(sentence.charAt(i)); i++; if (i==sentence.length()-1 || sentence.charAt(i)==' '){ if (i==sentence.length()-1) {temp.append(sentence.charAt(i));} int ii=temp.length()-1; int jj=0; while (ii-jj>=0){ char Sii=temp.charAt(ii); char Sjj=temp.charAt(jj); temp.setCharAt(ii,Sjj); temp.setCharAt(jj,Sii); ii--;jj++; }//得到单个单词并反转 i++; //跳过空格 backS=backS+temp+" "; //添加翻转后单词和空格 temp = new StringBuffer(); //重置temp存放单个单词 } } return backS; } public static void main(String[] args) { ReserveString reserveString = new ReserveString(); System.out.println(reserveString.reserve("I love programming rly")); } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。