【日更刷题】1455. 检查单词是否为句中其他单词的前缀

67 阅读2分钟

持续创作,加速成长!这是我参与「掘金日新计划 · 6 月更文挑战」的第13天,点击查看活动详情

一、题目描述:

1455. 检查单词是否为句中其他单词的前缀 - 力扣(LeetCode)s/increasing-decreasing-string/)

给你一个字符串 sentence 作为句子并指定检索词为 searchWord ,其中句子由若干用 单个空格 分隔的单词组成。请你检查检索词 searchWord 是否为句子 sentence 中任意单词的前缀。

如果 searchWord 是某一个单词的前缀,则返回句子 sentence 中该单词所对应的下标(下标从 1 开始)。如果 searchWord 是多个单词的前缀,则返回匹配的第一个单词的下标(最小下标)。如果 searchWord 不是任何单词的前缀,则返回 -1

字符串 s前缀s 的任何前导连续子字符串。

 

示例 1:

输入:sentence = "i love eating burger", searchWord = "burg"
输出:4
解释:"burg""burger" 的前缀,而 "burger" 是句子中第 4 个单词。

示例 2:

输入:sentence = "this problem is an easy problem", searchWord = "pro"
输出:2
解释:"pro""problem" 的前缀,而 "problem" 是句子中第 2 个也是第 6 个单词,但是应该返回最小下标 2

示例 3:

输入:sentence = "i am tired", searchWord = "you"
输出:-1
解释:"you" 不是句子中任何单词的前缀。

提示:

  • 1 <= sentence.length <= 100
  • 1 <= searchWord.length <= 10
  • sentence 由小写英文字母和空格组成。
  • searchWord 由小写英文字母组成。

二、思路分析:

一次遍历

  • 遇到空格后: 单词个数++, 待比较字符索引清零
  • 不是空格后: 如果字符索引合法(wordCharIndex >= 0), 则继续比较附带索引++,
  • 如果和搜索单词中的字符不相等, 索引置为-1, 这样保证在下一个单词来临之前不再比较,
  • 如果和搜索单词中的字符相等, 则继续比较长度是否到尾部,
  • 满足则返回单词索引wordIndex

三、AC 代码:

class Solution {
    public int isPrefixOfWord(String sentence, String searchWord) {
        int wordIndex = 0;
        int wordCharIndex = 0;
        int searchLen = searchWord.length();
        for (int i = 0, len = sentence.length(); i < len; i++) {
            char ch = sentence.charAt(i);
            if (ch != ' ') {
                if (wordCharIndex >= 0) {
                    if (ch != searchWord.charAt(wordCharIndex++)) {
                     wordCharIndex = -1;
                    } else if (wordCharIndex == searchLen) {
                        return wordIndex + 1;
                    }
                }
            } else {
                wordIndex++;
                wordCharIndex = 0; 
            }
        }
        return -1;
    }
}