题目描述
牛客最近来了一个新员工Fish,每天早晨总是会拿着一本英文杂志,写些句子在本子上。同事Cat对Fish写的内容颇感兴趣,有一天他向Fish借来翻看,但却读不懂它的意思。例如,“student. a am I”。后来才意识到,这家伙原来把句子单词的顺序翻转了,正确的句子应该是“I am a student.”。Cat对一一的翻转这些单词顺序可不在行,你能帮助他么?
代码:
<span style="font-family:SimSun;font-size:24px;color:#cc33cc;">public class Solution { public String ReverseSentence(String str) { if(str.trim().length()==0){ return str; } String [] temp=str.split(" "); int length=temp.length; String [] normal=new String[length]; for(int i=0;i<length;i++){ normal[i]=temp[length-1-i]; } StringBuilder fish=new StringBuilder(); for(int i=0;i<length;i++){ if(i!=length-1) fish.append(normal[i]+" "); else fish.append(normal[i]); } return fish.toString(); } }</span>
时间: 2024-10-13 03:22:27