prvy
This commit is contained in:
parent
c1498688c2
commit
d29e995d9a
11
sk1a/main.c
11
sk1a/main.c
@ -15,12 +15,11 @@ void print_solution(char* matrix,int sz){
|
|||||||
|
|
||||||
int main(){
|
int main(){
|
||||||
char tmaze[SZ+1][SZ+1]={
|
char tmaze[SZ+1][SZ+1]={
|
||||||
"*x ",
|
"*x ",
|
||||||
" xx ",
|
" xx ",
|
||||||
" x ",
|
" x ",
|
||||||
" x ",
|
" x ",
|
||||||
" ",
|
" ",
|
||||||
" ",
|
|
||||||
};
|
};
|
||||||
char maze[SZ*SZ];
|
char maze[SZ*SZ];
|
||||||
memset(maze,' ',SZ*SZ);
|
memset(maze,' ',SZ*SZ);
|
||||||
|
BIN
sk1a/main.o
BIN
sk1a/main.o
Binary file not shown.
10
sk1a/maze.c
10
sk1a/maze.c
@ -7,32 +7,32 @@ int solve_maze(char* maze,int size) {
|
|||||||
int i = 0;
|
int i = 0;
|
||||||
int p, l, h, d = 0;
|
int p, l, h, d = 0;
|
||||||
while(i != size*size-1){
|
while(i != size*size-1){
|
||||||
//if (i % size - 1){l = 1;}
|
//if (i % size - 1 != 0){l = 1;}
|
||||||
//else if (i < size*size - size){h = 1;}
|
//else if (i < size*size - size){h = 1;}
|
||||||
//else if (i % size){p = 1;}
|
//else if (i % size){p = 1;}
|
||||||
//else if (i >= size){d =1;}
|
//else if (i >= size){d =1;}
|
||||||
if (maze[i + 1] == ' ' && l != 1) {
|
if (maze[i + 1] == ' ' /*&& i % size - 1 != 0 */&& l != 1) {
|
||||||
maze[i + 1] = '*';
|
maze[i + 1] = '*';
|
||||||
i++;
|
i++;
|
||||||
p = 0;
|
p = 0;
|
||||||
l = 0;
|
l = 0;
|
||||||
h = 0;
|
h = 0;
|
||||||
d = 0;
|
d = 0;
|
||||||
} else if (maze[i + size] == ' ' && h != 1) {
|
} else if (maze[i + size] == ' ' /*&& i < (size*size - size) != 0 */&& h != 1) {
|
||||||
maze[i + size] = '*';
|
maze[i + size] = '*';
|
||||||
i = i + size;
|
i = i + size;
|
||||||
p = 0;
|
p = 0;
|
||||||
l = 0;
|
l = 0;
|
||||||
h = 0;
|
h = 0;
|
||||||
d = 0;
|
d = 0;
|
||||||
} else if (maze[i - 1] == ' ' && p != 1) {
|
} else if (maze[i - 1] == ' ' /*&& i % size != 0 */&& p != 1) {
|
||||||
maze[i - 1] = '*';
|
maze[i - 1] = '*';
|
||||||
i--;
|
i--;
|
||||||
p = 0;
|
p = 0;
|
||||||
l = 0;
|
l = 0;
|
||||||
h = 0;
|
h = 0;
|
||||||
d = 0;
|
d = 0;
|
||||||
} else if (maze[i - size] == ' ' && d != 1) {
|
} else if (maze[i - size] == ' ' /*&& i >= size */&& d != 1) {
|
||||||
maze[i - size] = '*';
|
maze[i - size] = '*';
|
||||||
i = i - size;
|
i = i - size;
|
||||||
p = 0;
|
p = 0;
|
||||||
|
BIN
sk1a/maze.o
BIN
sk1a/maze.o
Binary file not shown.
BIN
sk1a/program
BIN
sk1a/program
Binary file not shown.
Loading…
Reference in New Issue
Block a user