class Solution {
public int lengthOfLastWord(String s) {
String []res=new String[10010];
int k=0;
StringBuffer buf=new StringBuffer();
for(int i=0;i<s.length();i++){
if(s.charAt(i)!=' '){
buf.append(s.charAt(i));
}
else{
String tmp=new String(buf);
buf.setLength(0);
if(tmp.length()>0)
res[k++]=tmp;
}
}
if(buf.length()>0)
res[k++]=new String(buf);
return res[k-1].length();
}
}
思路都在代码中...