您的位置:首页 > 编程语言 > Java开发

Longest Word in Dictionary through Deleting

2017-05-21 10:30 267 查看
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.

public class Solution {
public String findLongestWord(String s, List<String> d) {
if (d == null || s == null) {
return "";
}
int length = 0;
String re = "";
char[] sArray = s.toCharArray();
for (String ss : d) {
char[] array = ss.toCharArray();
int j = 0;
for (int i = 0; i < sArray.length && j < array.length; i++) {
if (sArray[i] == array[j]) {
j++;
}
}
if (j == array.length) {
if (j > length) {
length = j;
re = ss;
} else if (j == length) {
re = re.compareTo(ss) < 0 ? re : ss;
}
}
}
return re;
}
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  LeetCode java 算法