Problem Description
Given two words, beginWord
and endWord
, and a dictionary wordList
, return all the shortest transformation sequences from beginWord
to endWord
such that every adjacent pair of words differs by a single letter, and every intermediate word must be in wordList
. If no such sequence exists, return an empty list.
Key Insights
- The problem can be solved using a breadth-first search (BFS) to find the shortest paths.
- We need to explore all possible transformations of words and track the paths taken.
- A backtracking approach is used to reconstruct the paths once the shortest length is found.
- A hash map can be used to store the adjacency list of words that can be transformed into each other.
Space and Time Complexity
Time Complexity: O(N * 26^L), where N is the number of words in the wordList and L is the length of the words.
Space Complexity: O(N), for storing the adjacency list and the result paths.
Solution
This problem can be approached using a breadth-first search (BFS) to find the shortest paths from beginWord
to endWord
. We construct an adjacency list to represent all possible transformations, where each word is connected to other words that differ by one letter. After finding the shortest transformation length, we can use backtracking to reconstruct all valid transformation sequences.