矩阵中的路径

矩阵中的路径

给定一个 m x n 二维字符网格 board 和一个字符串单词 word 。如果 word 存在于网格中,返回 true ;否则,返回 false 。

单词必须按照字母顺序,通过相邻的单元格内的字母构成,其中“相邻”单元格是那些水平相邻或垂直相邻的单元格。同一个单元格内的字母不允许被重复使用。

例如,在下面的 3×4 的矩阵中包含单词 “ABCCED”(单词中的字母已标出)。
在这里插入图片描述

示例 1:

输入:board = [[“A”,“B”,“C”,“E”],[“S”,“F”,“C”,“S”],[“A”,“D”,“E”,“E”]], word = “ABCCED”
输出:true
示例 2:

输入:board = [[“a”,“b”],[“c”,“d”]], word = “abcd”
输出:false

public boolean exist(char[][] board, String word) {
        if (board.length*board[0].length<word.length()){
            return false;
        }
        int spart = 0;
        List<String> flag=new ArrayList<>();
        Set<String> bar=new HashSet<>();
        for (int i=0;i< board.length;i++){
            for (int j=0;j< board[0].length;j++){
                ec(board,word,i,j,spart,flag,bar);
            }
        }
        if (flag.isEmpty()){
            return false;
        }
        return true;

    }
    public void ec(char[][] board, String word,int pre,int after,int spart,List<String> flag,Set<String> bar){
        if (board[pre][after]==word.charAt(spart)){
            bar.add(pre+"-"+after);
            System.out.println(word.charAt(spart));
            if (spart==word.length()-1){
                flag.add(word);
                return;
            }

            if (board.length!=1&&pre==board.length-1&& !bar.contains((pre-1)+"-"+after)){
                ec(board,word,pre-1,after,spart+1,flag,bar);
            }
            if (board[0].length!=1&&after==board[0].length-1 && !bar.contains(pre+"-"+(after-1))){
                ec(board,word,pre,after-1,spart+1,flag,bar);
            }
            if (pre>=0&&pre<board.length-1 && !bar.contains((pre+1)+"-"+after)){
                ec(board,word,pre+1,after,spart+1,flag,bar);
            }
            if (after>=0&&after<board[0].length-1 && !bar.contains(pre+"-"+(after+1))){
                ec(board,word,pre,after+1,spart+1,flag,bar);
            }
            if(after>0  && !bar.contains(pre+"-"+(after-1))){
                ec(board,word,pre,after-1,spart+1,flag,bar);
            }
            if(pre>0 && !bar.contains((pre-1)+"-"+after)){
                ec(board,word,pre-1,after,spart+1,flag,bar);
            }

        }
        bar.remove(pre+"-"+after);

    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Array_new

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值