Chinaunix首页 | 论坛 | 博客
  • 博客访问: 266834
  • 博文数量: 170
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1709
  • 用 户 组: 普通用户
  • 注册时间: 2014-05-06 18:01
文章分类

全部博文(170)

文章存档

2016年(11)

2015年(130)

2014年(29)

分类: Java

2015-08-02 20:54:50

//Length of Last Word Total Accepted: 56458 Total Submissions: 204354 My Submissions Question Solution 
//Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.
//
//If the last word does not exist, return 0.
//
//Note: A word is defined as a character sequence consists of non-space characters only.
//
//For example, 
//Given s = "Hello World",
//return 5.
public class LengthofLastWord {


public static void main(String[] args) {
// TODO Auto-generated method stub


}
public int lengthOfLastWord(String s) {
if(s==null||s.length()==0)
return 0;
//去掉多于空格
s=s.trim();
int i;
for(i=s.length()-1;i>=0;i--){
if(s.charAt(i)==' '){
break;
}
}
return s.length()-1-i;
    }
}

阅读(303) | 评论(0) | 转发(0) |
0

上一篇:JumpGame

下一篇:Merge Intervals

给主人留下些什么吧!~~