NC242 单词搜索

NC242 单词搜索

  • 题目
  • 题解(8)
  • 讨论(9)
  • 排行
  • 面经

    new

中等  通过率:17.73%  时间限制:1秒  空间限制:256M

知识点数组递归

描述

给出一个二维字符数组和一个单词,判断单词是否在数组中出现,

单词由相邻单元格的字母连接而成,相邻单元指的是上下左右相邻。同一单元格的字母不能多次使用。

数据范围:

0 < 行长度 <= 100

0 < 列长度 <= 100

0 < 单词长度 <= 1000

思路:

动态递归的做法,

从每一个可能是开头的地方出发,依次上下左右尝试看看是否有成功的可能,如果有可能就继续,直到已经没有地方可以走或者找到为止。

此处需要用一个数组V记录已经走过的下标,因为题目要求同一个位置不能多次使用。

和扫雷模拟实现差不多。

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param board string字符串vector 
     * @param word string字符串 
     * @return bool布尔型
     */
    vector<pair<int,int>>kk={{1,0},{-1,0},{0,-1},{0,1}};
    int n;
    int m;

    bool get(vector<string>& board, string word,int row,int col,int stdown, vector<vector<bool>>&v)
    {
        if(stdown==word.size()-1&&board[row][col]==word[stdown])
        return true;
        if(board[row][col]!=word[stdown])
        return false;
        int f=false;
        v[row][col]=true;
        for(auto e:kk)
        {
            int x1=row+e.first,y1=col+e.second;
            if(x1>=0&&x1<n&&y1>=0&&y1<m&&v[x1][y1]==false)
            {   
                f|= get(board,word,x1,y1,stdown+1,v);
     
            }
        }
        v[row][col]=false;
        return f;
    }

    bool exist(vector<string>& board, string word) {
        // write code here

        //递归?
        n=board.size();
        m=board[0].size();
        vector<vector<bool>>v(n,vector<bool>(m));
        if(word.size()==0)
        return true;
        else
         {
           for(int i=0;i<board.size();i++)
           {
            for(int j=0;j<board[0].size();j++)
            {
                if(board[i][j]==word[0])
                {    
                    
                    if(get(board,word,i,j,0,v))
                    return true;

                }
            }
           }
           return false;
         };
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值