基本思路:遍历字符串,用start指针指向单词开头,end指针指向单词结尾,如果有单词,end-start+1即为最后一个单词的长度。 代码如下: // // Created by jt on 2020/9/29. // class Solution { public: int lengthOfLastWord(const char *s) { if (!s) return 0; // 找到最后一个空格 const char *p = s, *start = nullptr, *end = nullptr; while (...