13.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:
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.
Example 1:
Solution : (BFS)
Approach: Add all words in the dictionary to a set. Perform BFS by searching all words of next-level present in set. If word matches end word then return Else Insert into queue Remove the word from set Increase the level
Time Complexity: O(n^2 * 26 * w) n = length of string w = length of word dictionary
Last updated