常见算法 - 求给定字符串在字符串数组中转变成另一字符串的最少次数

Leetcode(127):

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

Output: 5

Explanation: As one shortest transformation is "hit" -> "hot" -> "dot" -> "dog" -> "cog",
return its length 5.
思路与最少完全平方数和相同。构造图,可以改变某一字符到达就是一条路径。但这种解法超时了。。。

class Solution {
    public int ladderLength(String beginWord, String endWord, List<String> wordList) {
        	// 与最小完全平方数和思路一样,借助构造图,求最小路径
		Queue<String> queue = new LinkedList<String>();
		HashSet<String> set = new HashSet<String>();
		int level = 1;
		queue.offer(beginWord);
		while (!queue.isEmpty()) {
			int size = queue.size();
//			System.out.println(size);
			level++;
			for (int j = 0; j < size; j++) {
				String str = queue.poll();
				if (set.add(str)) {
					for (int i = 0; i < str.length(); i++) {
						char[] chars = str.toCharArray();
						for (char c = 'a'; c <= 'z'; c++) {
							chars[i] = c;			
							String word = new String(chars);
	                    	if (wordList.contains(word)) {
								if(word.equals(endWord)){
									return level;
								}else if(!set.contains(word)){
									queue.offer(word);
								}
							}
						}
					}
				}
			}
//			System.out.println("queueSize:"+queue.size());
		}
		return 0;
	}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值