字符串中最后一个词组的长度 Length of Last Word
為什么80%的碼農都做不了架構師?>>> ??
問題:
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 Solution {//7ms
? ? public int lengthOfLastWord(String s) {
? ? ? ? String[] schar = s.trim().split(" ");
? ? ? ? if(schar.length == 0) return 0;
? ? ? ? return schar[schar.length - 1].length();
? ? }
}
② 直接在字符串末尾開始計算,停在‘ ’的位置。
public class Solution {//5ms
? ? public int lengthOfLastWord(String s) { ? ? ??
? ? ? ? int len = 0;
? ? ? ? for(int i = s.length() - 1; i >= 0; i --){
? ? ? ? ? ? if(s.charAt(i) != ' ')
? ? ? ? ? ? ? ? len ++;
? ? ? ? ? ? else if(len != 0)
? ? ? ? ? ? ? ? break;
? ? ? ? }
? ? ? ? return len;
? ? }
}
轉載于:https://my.oschina.net/liyurong/blog/1354438
超強干貨來襲 云風專訪:近40年碼齡,通宵達旦的技術人生總結
以上是生活随笔為你收集整理的字符串中最后一个词组的长度 Length of Last Word的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: PHP:第四章——PHP数组array_
- 下一篇: ci框架的session类,怎么使用ci