返回介绍

solution / 0500-0599 / 0524.Longest Word in Dictionary through Deleting / README

发布于 2024-06-17 01:03:59 字数 4620 浏览 0 评论 0 收藏 0

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

English Version

题目描述

给你一个字符串 s 和一个字符串数组 dictionary ,找出并返回 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
  • sdictionary[i] 仅由小写英文字母组成

解法

方法一

class Solution:
  def findLongestWord(self, s: str, dictionary: List[str]) -> str:
    def check(a, b):
      m, n = len(a), len(b)
      i = j = 0
      while i < m and j < n:
        if a[i] == b[j]:
          j += 1
        i += 1
      return j == n

    ans = ''
    for a in dictionary:
      if check(s, a) and (len(ans) < len(a) or (len(ans) == len(a) and ans > a)):
        ans = a
    return ans
class Solution {
  public String findLongestWord(String s, List<String> dictionary) {
    String ans = "";
    for (String a : dictionary) {
      if (check(s, a)
        && (ans.length() < a.length()
          || (ans.length() == a.length() && a.compareTo(ans) < 0))) {
        ans = a;
      }
    }
    return ans;
  }

  private boolean check(String a, String b) {
    int m = a.length(), n = b.length();
    int i = 0, j = 0;
    while (i < m && j < n) {
      if (a.charAt(i) == b.charAt(j)) {
        ++j;
      }
      ++i;
    }
    return j == n;
  }
}
class Solution {
public:
  string findLongestWord(string s, vector<string>& dictionary) {
    string ans = "";
    for (string& a : dictionary)
      if (check(s, a) && (ans.size() < a.size() || (ans.size() == a.size() && a < ans)))
        ans = a;
    return ans;
  }

  bool check(string& a, string& b) {
    int m = a.size(), n = b.size();
    int i = 0, j = 0;
    while (i < m && j < n) {
      if (a[i] == b[j]) ++j;
      ++i;
    }
    return j == n;
  }
};
func findLongestWord(s string, dictionary []string) string {
  ans := ""
  check := func(a, b string) bool {
    m, n := len(a), len(b)
    i, j := 0, 0
    for i < m && j < n {
      if a[i] == b[j] {
        j++
      }
      i++
    }
    return j == n
  }
  for _, a := range dictionary {
    if check(s, a) && (len(ans) < len(a) || (len(ans) == len(a) && a < ans)) {
      ans = a
    }
  }
  return ans
}
function findLongestWord(s: string, dictionary: string[]): string {
  dictionary.sort((a, b) => {
    if (a.length === b.length) {
      return b < a ? 1 : -1;
    }
    return b.length - a.length;
  });
  const n = s.length;
  for (const target of dictionary) {
    const m = target.length;
    if (m > n) {
      continue;
    }
    let i = 0;
    let j = 0;
    while (i < n && j < m) {
      if (s[i] === target[j]) {
        j++;
      }
      i++;
    }
    if (j === m) {
      return target;
    }
  }
  return '';
}
impl Solution {
  pub fn find_longest_word(s: String, mut dictionary: Vec<String>) -> String {
    dictionary.sort_unstable_by(|a, b| (b.len(), a).cmp(&(a.len(), b)));
    for target in dictionary {
      let target: Vec<char> = target.chars().collect();
      let n = target.len();
      let mut i = 0;
      for c in s.chars() {
        if i == n {
          break;
        }
        if c == target[i] {
          i += 1;
        }
      }
      if i == n {
        return target.iter().collect();
      }
    }
    String::new()
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文