leetcode Length of Last Word(easy) /java

Posted 天气晚来秋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode Length of Last Word(easy) /java相关的知识,希望对你有一定的参考价值。

 

坑主要在处理空格。因为字符串之间不止有一个空格。

import java.io.*;
import java.util.*;

public class Solution {
        public static int lengthOfLastWord(String s) {
        int r=0;
        int len=s.length();
        if(len==0)
            return 0;
        int i,j;
        char[] c=s.toCharArray();
        int flag=1;
        for(i=0;i<len;i++)
        {
            if(c[i]!=\' \')
                flag=0;
        }
        if(flag==1)
            return 0;
        while(c[len-1]==\' \')
            len--;
        for(i=len-1;i>=0;i--)
        {
            if(c[i]==\' \')
                break;
            else
                r++;
        }

        return r;
    }
    public static void main(String[] args)
    {
        String a="   ";
        String b="Hello Wolrd lala   ";
        System.out.println(lengthOfLastWord(a));
        System.out.println(lengthOfLastWord(b));
    }
}

 

以上是关于leetcode Length of Last Word(easy) /java的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode:Length of Last Word

一天一道LeetCode#58. Length of Last Word

Java [Leetcode 58]Length of Last Word

LeetCode Length of Last Word

Leetcode 之Length of Last Word(36)

Length of last word--LeetCode