-
Notifications
You must be signed in to change notification settings - Fork 0
/
1048.最长字符串链.c
57 lines (50 loc) · 1.3 KB
/
1048.最长字符串链.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* @lc app=leetcode.cn id=1048 lang=c
*
* [1048] 最长字符串链
*
* https://leetcode-cn.com/problems/longest-string-chain/description/
*
* algorithms
* Medium (42.64%)
* Likes: 63
* Dislikes: 0
* Total Accepted: 4.9K
* Total Submissions: 11.5K
* Testcase Example: '["a","b","ba","bca","bda","bdca"]'
*
* 给出一个单词列表,其中每个单词都由小写英文字母组成。
*
* 如果我们可以在 word1 的任何地方添加一个字母使其变成 word2,那么我们认为 word1 是 word2 的前身。例如,"abc" 是
* "abac" 的前身。
*
* 词链是单词 [word_1, word_2, ..., word_k] 组成的序列,k >= 1,其中 word_1 是 word_2
* 的前身,word_2 是 word_3 的前身,依此类推。
*
* 从给定单词列表 words 中选择单词组成词链,返回词链的最长可能长度。
*
*
* 示例:
*
* 输入:["a","b","ba","bca","bda","bdca"]
* 输出:4
* 解释:最长单词链之一为 "a","ba","bda","bdca"。
*
*
*
*
* 提示:
*
*
* 1 <= words.length <= 1000
* 1 <= words[i].length <= 16
* words[i] 仅由小写英文字母组成。
*
*
*
*
*/
// @lc code=start
int longestStrChain(char ** words, int wordsSize){
}
// @lc code=end