有人可以帮我理解以下 pheudocode 吗?
countWords(vertex, word, missingLetters)
k=firstCharacter(word)
if isEmpty(word)
return vertex.words
else if notExists(edges[k]) and missingLetters=0
return 0
else if notExists(edges[k])
cutLeftmostCharacter(word)
return countWords(vertex, word, missingLetters-1)
//Here we cut a character but we don't go lower in the tree
else
//We are adding the two possibilities: the first
//character has been deleted plus the first character is present
r=countWords(vertex, word, missingLetters-1)
cutLeftmostCharacter(word)
r=r+countWords(edges[k], word, missingLetters)
return r
这个想法是,使用Trie,我们试图找到一个单词在我们的字典中出现的次数,但我们可能会丢失字母。
我迷路了else
。我不明白其中的逻辑。
例如,如果我们单词的第一个字符是匹配的,我们命中最后一个字符,else
然后countWords
在同一级别上递归,missingLetters-1
但是这不是一个相同的循环吗?即它会再次比较同一级别的第一个字母等等?
有人可以帮我解决这个问题吗?