【LeetCode】length-of-last-word

版权声明:噗噗个噗~~~ https://blog.csdn.net/Puyar_/article/details/85320549

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",
return5.

class Solution {
public:
    int lengthOfLastWord(const char *s) {
        int sum=0;
        int left=0;
        int right=strlen(s)-1;
        while(s[left]==' ')left++;
        while(s[right]==' ')right--;
       for(int i=left;i<=right;i++)
       {
           if(s[i]==' ')sum=0;
           else sum++;
       }
        return sum;
    }
};

猜你喜欢

转载自blog.csdn.net/Puyar_/article/details/85320549