#coding: utf-8 ''' mbinary ####################################################################### # File : dfs.py # Author: mbinary # Mail: zhuheqin1@gmail.com # Blog: https://mbinary.xyz # Github: https://github.com/mbinary # Created Time: 2019-05-27 10:02 # Description: from leetcode-cn #1048: https://leetcode-cn.com/problems/longest-string-chain/ 给出一个单词列表,其中每个单词都由小写英文字母组成。 如果我们可以在 word1 的任何地方添加一个字母使其变成 word2,那么我们认为 word1 是 word2 的前身。例如,"abc" 是 "abac" 的前身。 词链是单词 [word_1, word_2, ..., word_k] 组成的序列,k >= 1,其中 word_1 是 word_2 的前身,word_2 是 word_3 的前身,依此类推。 从给定单词列表 words 中选择单词组成词链,返回词链的最长可能长度。 ####################################################################### ''' class Solution: def longestStrChain(self, words: List[str]) -> int: def isAdj(s1,s2): if len(s1)>len(s2): s1,s2 = s2,s1 n1,n2 = len(s1),len(s2) if n2-n1!=1: return False i=j=0 flag = False while i