524:通过删除字母匹配到字典里最长单词

This commit is contained in:
huangge1199 2021-09-14 13:17:56 +08:00
parent 14836e32f9
commit 29f3b05de2
3 changed files with 98 additions and 1 deletions

View File

@ -0,0 +1,66 @@
//给你一个字符串 s 和一个字符串数组 dictionary 作为字典找出并返回字典中最长的字符串该字符串可以通过删除 s 中的某些字符得到
//
// 如果答案不止一个返回长度最长且字典序最小的字符串如果答案不存在则返回空字符串
//
//
//
// 示例 1
//
//
//输入s = "abpcplea", dictionary = ["ale","apple","monkey","plea"]
//输出"apple"
//
//
// 示例 2
//
//
//输入s = "abpcplea", dictionary = ["a","b","c"]
//输出"a"
//
//
//
//
// 提示
//
//
// 1 <= s.length <= 1000
// 1 <= dictionary.length <= 1000
// 1 <= dictionary[i].length <= 1000
// s dictionary[i] 仅由小写英文字母组成
//
// Related Topics 数组 双指针 字符串 排序 👍 214 👎 0
package leetcode.editor.cn;
import java.util.*;
//524:通过删除字母匹配到字典里最长单词
class LongestWordInDictionaryThroughDeleting {
public static void main(String[] args) {
//测试代码
Solution solution = new LongestWordInDictionaryThroughDeleting().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public String findLongestWord(String s, List<String> dictionary) {
dictionary.sort((o1, o2) -> o2.length() != o1.length() ? o2.length() - o1.length() : o1.compareTo(o2));
for (String str : dictionary) {
int i = 0, j = 0;
while (i < str.length() && j < s.length()) {
if (str.charAt(i) == s.charAt(j)) {
i++;
}
j++;
}
if (i == str.length()) {
return str;
}
}
return "";
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,31 @@
<p>给你一个字符串 <code>s</code> 和一个字符串数组 <code>dictionary</code> 作为字典,找出并返回字典中最长的字符串,该字符串可以通过删除 <code>s</code> 中的某些字符得到。</p>
<p>如果答案不止一个,返回长度最长且字典序最小的字符串。如果答案不存在,则返回空字符串。</p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>s = "abpcplea", dictionary = ["ale","apple","monkey","plea"]
<strong>输出:</strong>"apple"
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>s = "abpcplea", dictionary = ["a","b","c"]
<strong>输出:</strong>"a"
</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 <= s.length <= 1000</code></li>
<li><code>1 <= dictionary.length <= 1000</code></li>
<li><code>1 <= dictionary[i].length <= 1000</code></li>
<li><code>s</code><code>dictionary[i]</code> 仅由小写英文字母组成</li>
</ul>
<div><div>Related Topics</div><div><li>数组</li><li>双指针</li><li>字符串</li><li>排序</li></div></div><br><div><li>👍 214</li><li>👎 0</li></div>