Word Ladder

127. Word Ladder

Given two words (beginWord and endWord), and a dictionary's word list, find the length of shortest transformation sequence from beginWord to endWord, such that:

Only one letter can be changed at a time.
Each transformed word must exist in the word list. Note that beginWord is not a transformed word.
For example,

Given:
beginWord = "hit"
endWord = "cog"
wordList = ["hot","dot","dog","lot","log","cog"]
As one shortest transformation is "hit" -> "hot" -> "dot" -> "dog" -> "cog",
return its length 5.

Note:
Return 0 if there is no such transformation sequence.
All words have the same length.
All words contain only lowercase alphabetic characters.
You may assume no duplicates in the word list.
You may assume beginWord and endWord are non-empty and are not the same.

public class Solution {
    public int ladderLength(String beginWord, String endWord, List<String> wordList) {
        if (wordList == null || !wordList.contains(endWord)) {
            return 0;
        }

        Set<String> set = new HashSet<>(wordList);
        set.add(endWord);

        Queue<String> queue = new LinkedList<String>();
        queue.add(beginWord);

        int length = 0;
        
        while (!queue.isEmpty()) {
            int size = queue.size();
            length++;

            for (int i = 0; i < size; i++) {
                String word = queue.poll();

                if (word.equals(endWord)) {
                    return length;
                }

                for (int j = 0; j < word.length(); j++) {
                    char[] chars = word.toCharArray();

                    for (int k = 0; k < 26; k++) {
                        char c = (char)('a' + k);

                        if (chars[j] == c) {
                            continue;
                        }

                        chars[j] = c;
                        String newWord = String.valueOf(chars);

                        if (set.contains(newWord)) {
                            set.remove(newWord);
                            queue.offer(newWord);
                        }
                    }
                }
            }
        }

        return 0;
    }
}

Hope this helps,
Michael

DigitalOcean Referral Badge