JAVA实现BFS

字符串变换

http://www.nowcoder.com/questionTerminal/4818ae796bbc4a85a8cdd8e155c06d46

最短路径问题常用BFS或者DP。
本题用BFS。
首先构造节点-> String 和 dis
其次放入队列中 遍历
这应该也是BFS比较通用的模板

import java.util.*;

public class Change {
    public boolean[] b ;
    public class Node{
        private String s;
        private int dis;

        public Node(String s, int dis) {
            this.s = s;
            this.dis = dis;
        }
    }
    public int countChanges(String[] dic, int n, String s, String t) {
        b = new boolean[n];
        // write code here
        for (int i = 0; i < n; i++) {
            if(s.equals(dic[i])){
                b[i] = true;
                break;
            }
        }
        Queue<Node> queue = new LinkedList<>();
        queue.offer(new Node(s,0));
        while (!queue.isEmpty()){
            String flag = queue.peek().s;
            int distance = queue.peek().dis;
            if(t.equals(flag)) return distance;
            for (int i = 0; i < n; i++) {
                if(b[i] == false){
                    String str = dic[i];
                    if(isTrue(flag,str)){
                        queue.offer(new Node(str,distance + 1));
                        b[i] = true;
                    }
                }
            }
            queue.poll();
        }
        return -1;
    }

    public boolean isTrue(String s,String t){
        if(s.length() != t.length()) return false;
        int i = 0;
        int count = 0;
        while (i < s.length()){
            if(s.charAt(i) != t.charAt(i)) count++;
            i++;
        }
        if(count == 1) return true;
        return false;
    }
}
全部评论

相关推荐

头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务