forked from sachuverma/DataStructures-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path22. Longest Word in Dictionary through Deleting.cpp
More file actions
60 lines (52 loc) · 1.25 KB
/
22. Longest Word in Dictionary through Deleting.cpp
File metadata and controls
60 lines (52 loc) · 1.25 KB
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
57
58
59
60
/*
Longest Word in Dictionary through Deleting
==========================================
Given a string and a string dictionary, find the longest string in the dictionary that can be formed by deleting some characters of the given string. If there are more than one possible results, return the longest word with the smallest lexicographical order. If there is no possible result, return the empty string.
Example 1:
Input:
s = "abpcplea", d = ["ale","apple","monkey","plea"]
Output:
"apple"
Example 2:
Input:
s = "abpcplea", d = ["a","b","c"]
Output:
"a"
Note:
All the strings in the input will only contain lower-case letters.
The size of the dictionary won't exceed 1,000.
The length of all the strings in the input won't exceed 1,000.
*/
class Solution
{
public:
string findLongestWord(string s, vector<string> &d)
{
sort(d.begin(), d.end());
int len = 0;
string ans;
for (auto &word : d)
{
int i = 0, j = 0;
while (i < s.size() && j < word.size())
{
if (s[i] == word[j])
{
i++;
j++;
}
else
i++;
}
if (j == word.size())
{
if (len < j)
{
len = j;
ans = word;
}
}
}
return ans;
}
};