Problem Description
A transformation sequence from word beginWord
to word endWord
using a dictionary wordList
is a sequence of words beginWord -> s1 -> s2 -> ... -> sk
such that:
- Every adjacent pair of words differs by a single letter.
- Every
si
for1 <= i <= k
is inwordList
. Note thatbeginWord
does not need to be inwordList
. sk == endWord
.
Given two words, beginWord
and endWord
, and a dictionary wordList
, return the number of words in the shortest transformation sequence from beginWord
to endWord
, or 0
if no such sequence exists.
Key Insights
- Each word can be transformed into others by changing one letter at a time.
- A breadth-first search (BFS) is suitable for exploring all possible transformations level by level.
- The problem can be represented as a graph where each word is a node and edges exist between nodes that differ by one letter.
- Using a set for the
wordList
allows for O(1) average-time complexity for lookups.
Space and Time Complexity
Time Complexity: O(N * M), where N is the number of words in wordList
and M is the length of each word (since we check all possible single-letter transformations for each word).
Space Complexity: O(N), for storing the visited words and the queue used in BFS.
Solution
The solution uses a breadth-first search (BFS) algorithm to explore the transformation sequences. We start from the beginWord
and explore all possible transformations that lead to words in the wordList
. Each valid transformation is added to a queue, and we keep track of the number of transformations taken to reach each word. The BFS continues until we either find the endWord
or exhaust all possibilities.
- Initialize a queue and add the
beginWord
with a step count of 1. - Use a set to store the
wordList
for O(1) lookups. - For each word dequeued, generate all possible transformations by changing each letter to every other letter from 'a' to 'z'.
- If a transformation results in a word that is in the
wordList
, enqueue it with an incremented step count and mark it as visited. - If we dequeue the
endWord
, return the step count. - If the queue is exhausted without finding the
endWord
, return 0.