关于矩阵和递归回溯的思考

bool isPath(char* matrix, vector<char> flags, char* str, int x, int y, int rows, int cols)
{
   //合法性验证 
   //递归的结束条件
   if (x < 0 || x >= rows
    || y < 0 || y >= cols)
   {
      return false;
   }
   
   //x*cols + y 一维数组表达二维下表
   if (matrix[x*cols+y] == *str && flags[x*cols + y] == 0)
   {
      flags[x*cols + y] = 1;
      //字符串结尾了
      if (*(str+1) == 0)
      {
         return true;
      }
      
      //回溯用递归来实现
      //递归的输入一直在减少
      bool condition = isPath(matrix, flags, (str + 1), x, y - 1, rows, cols)
                    || isPath(matrix, flags, (str + 1), x, y + 1, rows, cols)
                    || isPath(matrix, flags, (str + 1), x - 1, y, rows, cols)
                    || isPath(matrix, flags, (str + 1), x + 1, y, rows, cols);
                    
                    
      if (condition == false)
      {
          flags[x*cols+y] = 0;
      }
      
      return condition;
   }
   else
   {
      return false;
   }
}

bool hasPath(char* matrix, int rows, int cols, char* str)
{
   vector<char> flags(rows*cols, 0);
   bool condition = false;
   //遍历所有点
   //遍历二维数组
   for (int i = 0; i < rows; i++)
   {
      for (int j = 0; j < cols; j++)
      {
          condition = (condition || isPath(matrix, flags, str, i, j, rows, cols));
      }
   }
   
   return condition;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值