Leetcode JAVA刷刷站(58)最后一个单词的长度

时间:2025-04-01 07:50:34
  • public class Solution {
  • public int lengthOfLastWord(String s) {
  • // 去除字符串尾部的空格
  • s = ();
  • if (()) {
  • // 如果字符串为空(包括只有空格的情况),则返回0
  • return 0;
  • }
  • // 从字符串末尾开始,找到第一个空格的位置
  • int lastSpaceIndex = (' ');
  • // 如果找不到空格(即整个字符串就是一个单词),则返回字符串的长度
  • if (lastSpaceIndex == -1) {
  • return ();
  • }
  • // 否则,返回最后一个单词的长度,即最后一个空格之后的字符数
  • return () - lastSpaceIndex - 1;
  • }
  • public static void main(String[] args) {
  • Solution solution = new Solution();
  • String s = "Hello World";
  • ((s)); // 输出 5
  • s = " fly me to the moon ";
  • ((s)); // 输出 4
  • s = "luffy is still joyboy";
  • ((s)); // 输出 6
  • s = " ";
  • ((s)); // 输出 0
  • }
  • }