您的位置:首页 > 其它

524. Longest Word in Dictionary through Deleting

2017-04-27 21:37 316 查看
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.

Subscribe to see which companies asked this question.
public class Solution {
public String findLongestWord(String s, List<String> d) {
String re = "";
int max = 0;
for (String temp : d) {
if (temp.length() > s.length())
continue;
if (temp.length() > max) {
if (helper(s, temp)) {
re = temp;
max = re.length();
}

} else if (temp.length() == max) {
if (helper(s, temp) && temp.compareTo(re) < 0)
re = temp;
}
}
return re;
}
private boolean helper(String s, String d) {
int i = 0, j = 0;
while (i < s.length() && j < d.length()) {
if (s.charAt(i) == d.charAt(j))
j++;
i++;
}
return j == d.length();
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: