矩阵中的路径

回溯剪枝,只在和目标串能一位一位对应上的字符上做DFS,如果全对应上了,即 depth == str.lenght ,则说明存在一条这样的路径,返回true。

    public boolean hasPath(char[] matrix, int rows, int cols, char[] str) {
        if (matrix == null && str == null) return true;
        if (str == null) return true;
        if (matrix == null) return false;
        int mLen = matrix.length, sLen = str.length;
        if (mLen == 0 && sLen == 0) return true;
        if (sLen > mLen) return false;
        boolean[] isVisit = new boolean[mLen];
        for (int i = 0; i < mLen; i++) {
            if (matrix[i] == str[0]) {
                isVisit[i] = true;
                if (hasPath(matrix, cols, str, 1, i, isVisit)) {
                    return true;
                }
                isVisit[i] = false;
            }
        }
        return false;
    }
public boolean hasPath(char[] matrix, int cols, char[] str, int depth, int pre, boolean[] isVisit) {
    if (depth == str.length) {
        return true;
    }
    boolean res = false;
    for (int i = 0; i < matrix.length; i++) {
        if (isVisit[i] || !isAdjoin(pre, cols, matrix.length, i)) {
            continue;
        }
        if (str[depth] != matrix[i]) {
            continue;
        } else {
            isVisit[i] = true;
            res = hasPath(matrix, cols, str, depth + 1, i, isVisit);
            if (res) return res;
            isVisit[i] = false;
        }
    }
    return res;
}

public boolean isAdjoin(int pre, int cols, int lenght, int i) {
    if (pre - cols >= 0 && pre - cols == i) return true;
    if (pre + cols < lenght && pre + cols == i) return true;
    if (pre % cols == 0 && pre + 1 == i) return true;
    if (pre % cols == cols - 1 && pre - 1 == i) return true;
    if ((pre % cols > 0 && pre % cols < cols - 1) && (pre + 1 == i || pre - 1 == i)) return true;
    return false;
}
全部评论

相关推荐

感性的干饭人在线蹲牛友:🐮 应该是在嘉定这边叭,禾赛大楼挺好看的
点赞 评论 收藏
分享
我见java多妩媚:大外包
点赞 评论 收藏
分享
昨天 00:11
已编辑
广东工业大学 算法工程师
避雷深圳&nbsp;&nbsp;yidao,试用期&nbsp;6&nbsp;个月。好嘛,试用期还没结束,就直接告诉你尽快找下一家吧,我谢谢您嘞
牛客75408465号:笑死,直属领导和 hr 口径都没统一,各自说了一些离谱的被裁理由,你们能不能认真一点呀,哈哈哈哈哈😅😅😅
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务