返回介绍

lcci / 17.22.Word Transformer / README

发布于 2024-06-17 01:04:42 字数 4945 浏览 0 评论 0 收藏 0

面试题 17.22. 单词转换

English Version

题目描述

给定字典中的两个词,长度相等。写一个方法,把一个词转换成另一个词, 但是一次只能改变一个字符。每一步得到的新词都必须能在字典中找到。

编写一个程序,返回一个可能的转换序列。如有多个可能的转换序列,你可以返回任何一个。

示例 1:

输入:
beginWord = "hit",
endWord = "cog",
wordList = ["hot","dot","dog","lot","log","cog"]

输出:
["hit","hot","dot","lot","log","cog"]

示例 2:

输入:
beginWord = "hit"
endWord = "cog"
wordList = ["hot","dot","dog","lot","log"]

输出: []

解释: _endWord_ "cog" 不在字典中,所以不存在符合要求的转换序列。

解法

方法一

class Solution:
  def findLadders(
    self, beginWord: str, endWord: str, wordList: List[str]
  ) -> List[str]:
    def check(a, b):
      return sum(a[i] != b[i] for i in range(len(a))) == 1

    def dfs(begin, end, t):
      nonlocal ans
      if ans:
        return
      if begin == end:
        ans = t.copy()
        return
      for word in wordList:
        if word in visited or not check(begin, word):
          continue
        visited.add(word)
        t.append(word)
        dfs(word, end, t)
        t.pop()

    ans = []
    visited = set()
    dfs(beginWord, endWord, [beginWord])
    return ans
class Solution {
  private List<String> words;
  private List<String> ans;
  private Set<String> visited;

  public List<String> findLadders(String beginWord, String endWord, List<String> wordList) {
    words = wordList;
    ans = new ArrayList<>();
    visited = new HashSet<>();
    List<String> t = new ArrayList<>();
    t.add(beginWord);
    dfs(beginWord, endWord, t);
    return ans;
  }

  private void dfs(String begin, String end, List<String> t) {
    if (!ans.isEmpty()) {
      return;
    }
    if (Objects.equals(begin, end)) {
      ans = new ArrayList<>(t);
      return;
    }
    for (String word : words) {
      if (visited.contains(word) || !check(begin, word)) {
        continue;
      }
      t.add(word);
      visited.add(word);
      dfs(word, end, t);
      t.remove(t.size() - 1);
    }
  }

  private boolean check(String a, String b) {
    if (a.length() != b.length()) {
      return false;
    }
    int cnt = 0;
    for (int i = 0; i < a.length(); ++i) {
      if (a.charAt(i) != b.charAt(i)) {
        ++cnt;
      }
    }
    return cnt == 1;
  }
}
class Solution {
public:
  vector<string> words;
  vector<string> ans;
  unordered_set<string> visited;

  vector<string> findLadders(string beginWord, string endWord, vector<string>& wordList) {
    this->words = wordList;
    ans.resize(0);
    vector<string> t;
    t.push_back(beginWord);
    dfs(beginWord, endWord, t);
    return ans;
  }

  void dfs(string begin, string end, vector<string>& t) {
    if (!ans.empty()) return;
    if (begin == end) {
      ans = t;
      return;
    }
    for (auto word : words) {
      if (visited.count(word) || !check(begin, word)) continue;
      visited.insert(word);
      t.push_back(word);
      dfs(word, end, t);
      t.pop_back();
    }
  }

  bool check(string a, string b) {
    if (a.size() != b.size()) return false;
    int cnt = 0;
    for (int i = 0; i < a.size(); ++i)
      if (a[i] != b[i]) ++cnt;
    return cnt == 1;
  }
};
func findLadders(beginWord string, endWord string, wordList []string) []string {
  var ans []string
  visited := make(map[string]bool)

  check := func(a, b string) bool {
    if len(a) != len(b) {
      return false
    }
    cnt := 0
    for i := 0; i < len(a); i++ {
      if a[i] != b[i] {
        cnt++
      }
    }
    return cnt == 1
  }

  var dfs func(begin, end string, t []string)
  dfs = func(begin, end string, t []string) {
    if len(ans) > 0 {
      return
    }
    if begin == end {
      ans = make([]string, len(t))
      copy(ans, t)
      return
    }
    for _, word := range wordList {
      if visited[word] || !check(begin, word) {
        continue
      }
      t = append(t, word)
      visited[word] = true
      dfs(word, end, t)
      t = t[:len(t)-1]
    }
  }

  var t []string
  t = append(t, beginWord)
  dfs(beginWord, endWord, t)
  return ans
}

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

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

发布评论

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