字符串矩阵转换成长字符串_字符串矩阵

字符串矩阵转换成长字符串

Description:

描述:

In this article, we are going to see how backtracking can be used to solve following problems?

在本文中,我们将看到如何使用回溯来解决以下问题?

Problem statement:

问题陈述:

A matrix of characters schematically represents a swamp. The swamp is composed of muddy areas, represented with the '.' character, and rocky areas, represented with the '*' character.

字符矩阵示意性地表示沼泽。 沼泽由泥泞的地区组成,以“。”表示 字符和岩石区域,以“ *”字符表示。

Example of swamp:

沼泽的例子:

    **.......
.......**.
...........
......**..
..........

Write a C program that searches a path in the swamp, from the left to the right, without jumps, only including consecutive rocky areas. Suppose that each rocky area can have at most one other rocky area on its right (there are no branches), i.e., either on the same row, or in the previous row, or the following one. The program shall print the row sequence of the path (the columns are implicit – there shall be a rocky area for each column), or report that no path exists.

编写一个C程序,该程序从左到右搜索沼泽中的一条路径,没有跳跃,仅包括连续的岩石区域。 假设每个岩石区域在其右侧最多可以有一个其他岩石区域(没有分支),即位于同一行,上一行或下一行。 程序应打印路径的行顺序(列是隐式的–每列应有一块岩石区域),或报告不存在路径。

Explanation with example:

举例说明:

Let's discuss the following input:

让我们讨论以下输入:

    **.*.*....*
..*.*...**
*...*.*....
.*.*.*.*.*.
..*.*...*.*

Let's display the input in a 2D matrix for better visualization.

让我们以2D矩阵显示输入,以便更好地可视化。

string matrix (1)

Let's start from the 0th column (0 indexing),

让我们从第0列(索引为0)开始,

There is a rock in the row 0

第0行有一块岩石

Start from (0, 0)

从(0,0)开始

string matrix (2)

Next rock that can be reached without any jump (0, 1)

可以毫无跳跃地到达的下一块岩石(0,1)

Path: (0, 0) -> (0, 1)

路径:(0,0)->(0,1)

string matrix (3)

Next rock that can be reached without any jump (1, 2)

可以毫无跳跃地到达的下一块岩石(1、2)

Path: (0, 0) -> (0, 1) -> (1, 2)

路径:(0,0)->(0,1)->(1,2)

string matrix (4)

Next rock that can be reached without any jump (0, 3)

可以毫无跳跃地到达的下一块岩石(0,3)

Path: (0, 0) -> (0, 1) -> (1, 2)-> (0, 3)

路径:(0,0)->(0,1)->(1,2)->(0,3)

string matrix (5)

Next rock that can be reached without any jump (1, 4)

可以毫无跳跃地到达的下一块岩石(1、4)

Path: (0, 0) -> (0, 1) -> (1, 2)-> (0, 3) -> (1, 4)

路径:(0,0)->(0,1)->(1,2)->(0,3)->(1,4)

string matrix (6)

Next rock that can be reached without any jump (0, 5)

可以毫无跳跃地到达的下一块岩石(0,5)

Path: (0, 0) -> (0, 1) -> (1, 2)-> (0, 3) -> (1, 4) -> (0, 5)

路径:(0,0)->(0,1)->(1,2)->(0,3)->(1,4)->(0,5)

string matrix (7)

Now, there is no next rock that can be reached from here, so we need to backtrack and find other alternatives. (red filled area refers that already explored but failed).

现在,从这里无法到达下一块岩石,因此我们需要回溯并找到其他选择。 (红色填充区域表示已经探索但失败了)。

string matrix (8)

So, we backtrack to previous state and the last point on our path is (1, 4). (0, 5) is already explored and failed option. Looking for alternative there is no more rock that can be reached from here. We need to backtrack again.

因此,我们回溯到先前的状态,并且路径上的最后一点是(1,4)。 (0,5)已经被探索并且失败了。 寻找替代品,这里不再有岩石。 我们需要再次回溯。

string matrix (9)

Such backtrack will ultimately yield the following state.

这种回溯最终将产生以下状态。

string matrix (10)

So basically, all the path we had explored is failed.

因此,基本上,我们探索的所有路径都是失败的。

We will start fresh from (2, 0) and start the same procedure again. If you keep doing you can see that the ultimate result is:

我们将从(2,0)重新开始,然后再次开始相同的过程。 如果继续这样做,您会看到最终结果是:

string matrix (11)

This is what backtrack is, explore through all the choices possible, backtrack if there is no next move. Of course, this kind of search technique is greedy, but it helps sometimes when you have no choices.

这就是回溯,探索所有可能的选择,如果没有下一步行动,则回溯。 当然,这种搜索技术是贪婪的,但有时在您别无选择时会有所帮助。

N.B: there can be multiple paths possible, depends on your implementation. If you terminate the program while the goal is reached it will return one path only. But if you keep exploring other possibilities as well, you can find other possible paths.

注意:可能有多种路径,具体取决于您的实现。 如果在达到目标时终止程序,它将仅返回一个路径。 但是,如果您也继续探索其他可能性,则可以找到其他可能的途径。

Algorithm:

算法:

    1.	Start: start from initial point
2.	Explore one from the possible next moves
3.	If no more moves possible & goal is not reached 
backtrack and choose one from other alternatives.
4.	If goal is reached, success
5.	Else failure.

C Implementation:

C实现:

#include <stdio.h>
#define ROW 25
#define COL 80
char arr[ROW][COL];
int vis[COL],store[COL];
int issafe(int vis[],int curr,int curc,int r,int c){
//printf("%c\n",arr[curr][curc]);
if(curr<0 || curr>=r || curc<0 || curc>=c || arr[curr][curc]=='.')
return 0;
return 1;
}
int findpath(int vis[],int store[],int curr,int curc,int r,int c){
//base case
if(curc==c){
//store[curc]=curr;
printf("The path can be: ");
for(int i=0;i<c;i++){
printf("%d ",store[i]);
}
printf("\n");
return 1;
}
if(issafe(vis,curr,curc,r,c)){
vis[curc]=1;
store[curc]=curr;
//printf("%d\n",store[curc]);
if(findpath(vis,store,curr,curc+1,r,c))
return 1;
if(findpath(vis,store,curr+1,curc+1,r,c))
return 1;
if(findpath(vis,store,curr-1,curc+1,r,c))
return 1;
vis[curc]=0;
store[curc]=0;
return 0;
}
else{
return 0;
}
}
int main()
{
// FILE *fptr;
// fptr = fopen("input.txt", "r"); 
// if (fptr == NULL) 
// { 
//     printf("Cannot open file \n"); 
//     exit(0); 
// } 
int r,c;
printf("Enter number of rows and column\n");
scanf("%d %d",&r,&c);
printf("Enter the string matrix\n");
for(int i=0;i<r;i++){
scanf(" %[^\n]",arr[i]);
}
// for(int i=0;i<r;i++){
//     for(int j=0;j<c;j++){
//         printf("%c ",arr[i][j]);
//     }
//     printf("\n");
// }
int flag=0;
for(int i=0;i<r;i++){
for(int j=0;j<c;j++)
vis[j]=0;
for(int j=0;j<c;j++)
store[j]=0;
if(findpath(vis,store,i,0,r,c)){
flag=1;
//don't break here, if you need all possible paths
break;
}
}
if(flag==0)
printf("No path there\n");
return 0;
}

Output

输出量

Enter number of rows and column
5 11
Enter the string matrix
**.*.*....*
..*.*...**.
*...*.*....
.*.*.*.*.*.
..*.*...*.*
The path can be: 2 3 4 3 4 3 2 3 4 3 4 

翻译自: https://www.includehelp.com/icp/string-matrix.aspx

字符串矩阵转换成长字符串

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540532.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

pythonchallenge_level2

level2 地址&#xff1a;http://www.pythonchallenge.com/pc/def/ocr.html。 源码&#xff1a;gitcode.aliyun.com:qianlizhixing12/PythonChallenge.git。 问题&#xff1a;找出页面源码一点提示注释中的稀有字符。 #!/usr/bin/env python3 # -*- coding:UTF-8 -*-# Level 2im…

[转载] python类运算符的重载

参考链接&#xff1a; Python中的运算符重载 alist input().split() blist input().split() n float(input()) class Vector: def __init__(self, x0, y0, z0): # 请在此编写你的代码(可删除pass语句) self.X x self.Y y self.Z z # 代码结束 def __add__(self, other):…

r语言 运算符_R语言运算符

r语言 运算符R语言中的运算符 (Operators in R Language) Generally speaking, an operator is a symbol that gives proper commands to the compiler regarding a specific action to be executed. The operators are used for carrying out the mathematical or logical cal…

[转载] Python基础之类型转换与算术运算符

参考链接&#xff1a; Python中的运算符函数| 1 一、注释 1.注释&#xff1a;对程序进行标注和说明&#xff0c;增加程序的可读性。程序运行的时候会自动忽略注释。 2.单行注释&#xff1a;使用#的形式。但是#的形式只能注释一行&#xff0c;如果有多行&#xff0c;就不方便…

java awt 按钮响应_Java AWT按钮

java awt 按钮响应The Button class is used to implement a GUI push button. It has a label and generates an event, whenever it is clicked. As mentioned in previous sections, it extends the Component class and implements the Accessible interface. Button类用于…

解决“由于应用程序的配置不正确,应用程序未能启动,重新安装应用程序可能会纠正这个问题”...

在VS2005下用C写的程序&#xff0c;在一台未安装VS2005的系统上&#xff0c; 用命令行方式运行&#xff0c;提示&#xff1a; “系统无法执行指定的程序” 直接双击运行&#xff0c;提示&#xff1a; “由于应用程序的配置不正确&#xff0c;应用程序未能启动&#xff0c;重新安…

qgis在地图上画导航线_在Laravel中的航线

qgis在地图上画导航线For further process we need to know something about it, 为了进一步处理&#xff0c;我们需要了解一些有关它的信息&#xff0c; The route is a core part in Laravel because it maps the controller for sending a request which is automatically …

Logistic回归和SVM的异同

这个问题在最近面试的时候被问了几次&#xff0c;让谈一下Logistic回归&#xff08;以下简称LR&#xff09;和SVM的异同。由于之前没有对比分析过&#xff0c;而且不知道从哪个角度去分析&#xff0c;一时语塞&#xff0c;只能不知为不知。 现在对这二者做一个对比分析&#xf…

[转载] python学习笔记2--操作符,数据类型和内置功能

参考链接&#xff1a; Python中的Inplace运算符| 1(iadd()&#xff0c;isub()&#xff0c;iconcat()…) 什么是操作符&#xff1f; 简单的回答可以使用表达式4 5等于9&#xff0c;在这里4和5被称为操作数&#xff0c;被称为操符。 Python语言支持操作者有以下几种类型。 算…

scala bitset_Scala中的BitSet

scala bitsetScala BitSet (Scala BitSet) Set is a collection of unique elements. 集合是唯一元素的集合。 Bitset is a set of positive integers represented as a 64-bit word. 位集是一组表示为64位字的正整数。 Syntax: 句法&#xff1a; var bitset : Bitset Bits…

构建安全网络 比格云全系云产品30天内5折购

一年之计在于春&#xff0c;每年的三、四月&#xff0c;都是个人创业最佳的起步阶段&#xff0c;也是企业采购最火热的时期。为了降低用户的上云成本&#xff0c;让大家能无门槛享受到优质高性能的云服务&#xff0c;比格云从3月16日起&#xff0c;将上线“充值30天内&#xff…

python中 numpy_Python中的Numpy

python中 numpyPython中的Numpy是什么&#xff1f; (What is Numpy in Python?) Numpy is an array processing package which provides high-performance multidimensional array object and utilities to work with arrays. It is a basic package for scientific computati…

[转载] python之路《第二篇》Python基本数据类型

参考链接&#xff1a; Python中的Inplace运算符| 1(iadd()&#xff0c;isub()&#xff0c;iconcat()…) 运算符 1、算数运算&#xff1a; 2、比较运算&#xff1a; 3、赋值运算&#xff1a; 4、逻辑运算&#xff1a; 5、成员运算&#xff1a; 6、三元运算 三元运算&…

数据结构 基础知识

一。逻辑结构: 是指数据对象中数据 素之间的相互关系。 其实这也是我 今后最需要关注的问题 逻辑结构分为以 四种1. 集合结构 2.线性结构 3.数形结构 4&#xff0c;图形结构 二。物理结构&#xff1a; 1&#xff0c;顺序存储结,2 2. 链式存储结构 一&#xff0c;时间复杂…

ruby 变量类中范围_Ruby中的类

ruby 变量类中范围Ruby类 (Ruby Classes) In the actual world, we have many objects which belong to the same category. For instance, I am working on my laptop and this laptop is one of those laptops which exist around the globe. So, this laptop is an object o…

以云计算的名义 驻云科技牵手阿里云

本文讲的是以云计算的名义 驻云科技牵手阿里云一次三个公司的牵手 可能会改变无数企业的命运 2017年4月17日&#xff0c;对于很多人来说可能只是个平常的工作日&#xff0c;但是对于国内无数的企业来说却可能是个会改变企业命运的日。驻云科技联合国内云服务提供商阿里云及国外…

[转载] python学习笔记

参考链接&#xff1a; Python | a b并不总是a a b 官网http://www.python.org/ 官网library http://docs.python.org/library/ PyPI https://pypi.python.org/pypi 中文手册&#xff0c;适合快速入门 http://download.csdn.net/detail/xiarendeniao/4236870 py…

标志寄存器_访问标志寄存器,并与寄存器B |交换标志寄存器F的内容 8085微处理器...

标志寄存器Problem statement: 问题陈述&#xff1a; Write an assembly language program in 8085 microprocessor to access Flag register and exchange the content of flag register F with register B. 在8085微处理器中编写汇编语言程序以访问标志寄存器&#xff0c;并…

浏览器端已支持 ES6 规范(包括 export import)

当然&#xff0c;是几个比较优秀的浏览器&#xff0c;既然是优秀的浏览器&#xff0c;大家肯定知道是那几款啦&#xff0c;我就不列举了&#xff0c;我用的是 chrome。 对 script 声明 type 为 module 后就可以享受 es6 规范所带来的模块快感了。 基础语法既然是全支持&#xf…

[转载] Python学习:Python成员运算符和身份运算符

参考链接&#xff1a; Python中和is运算符之间的区别 Python成员运算符 除了以上的一些运算符之外&#xff0c;Python还支持成员运算符&#xff0c;测试实例中包含了一系列的成员&#xff0c;包括字符串&#xff0c;列表或元组。 运算符 描述 实例 in 如果在指定的序列中找…