uprava podmienok
This commit is contained in:
parent
7eccafba51
commit
0f311fe1f2
24
sk1a/maze.c
24
sk1a/maze.c
@ -5,26 +5,31 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
int paths(char* maze, int journey, int size){
|
int paths(char* maze, int journey, int size){
|
||||||
|
//printf("journy je:%d\n",journey);
|
||||||
|
|
||||||
if(journey == size*size-1){
|
if(journey == size*size-1){
|
||||||
maze[journey]= '*';
|
maze[journey]= '*';
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(journey >= 0 && journey <= (size*size) && maze[journey]==' ' && maze[journey]!='*'){
|
if(journey >= 0 && journey < (size*size) && maze[journey]==' '){
|
||||||
maze[journey] = '*';
|
|
||||||
|
maze[journey] = '*';
|
||||||
|
|
||||||
//Pohyb dole
|
//Pohyb dole
|
||||||
if(paths(maze, journey+size, size)){
|
if(journey < (size * size) - (size)){
|
||||||
return 1;
|
if(paths(maze, journey+size, size)){
|
||||||
}
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//Pohyb vpravo
|
//Pohyb vpravo
|
||||||
if(paths(maze, journey+1, size)){
|
if(((journey+1)%size)!=0) {
|
||||||
return 1;
|
if (paths(maze, journey + 1, size)) {
|
||||||
}
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//Pohyb hore
|
//Pohyb hore
|
||||||
if(paths(maze, journey-size, size)){
|
if(paths(maze, journey-size, size)){
|
||||||
@ -45,4 +50,3 @@ int paths(char* maze, int journey, int size){
|
|||||||
int solve_maze(char* maze, int size){
|
int solve_maze(char* maze, int size){
|
||||||
return paths(maze, 0, size);
|
return paths(maze, 0, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user