path.c/h: consistent indentation
This commit is contained in:
parent
3588163047
commit
7461795c1b
19
src/path.c
19
src/path.c
@ -49,13 +49,15 @@ int find_node_by_coords(int x, int y, int number_of_x_cells, int number_of_y_cel
|
|||||||
number_of_cells: number of cells in the row
|
number_of_cells: number of cells in the row
|
||||||
returns number of marked nodes */
|
returns number of marked nodes */
|
||||||
int mark_neighbours_of_the_nodes (int *nodes, int *source_nodes, int *neighbours, int mark,
|
int mark_neighbours_of_the_nodes (int *nodes, int *source_nodes, int *neighbours, int mark,
|
||||||
int number_of_x_cells, int number_of_y_cells) {
|
int number_of_x_cells, int number_of_y_cells)
|
||||||
|
{
|
||||||
int i, j, neighbours_count = 0;
|
int i, j, neighbours_count = 0;
|
||||||
int x, y, node;
|
int x, y, node;
|
||||||
int xses[4] = { 0, 0, 1, -1};
|
int xses[4] = { 0, 0, 1, -1};
|
||||||
int yses[4] = {-1, 1, 0, 0};
|
int yses[4] = {-1, 1, 0, 0};
|
||||||
|
|
||||||
for(i = 1; i <= source_nodes[0]; i++) {
|
for (i = 1; i <= source_nodes[0]; i++)
|
||||||
|
{
|
||||||
find_x_y_of_the_node(&x, &y, source_nodes[i], number_of_x_cells, number_of_y_cells);
|
find_x_y_of_the_node(&x, &y, source_nodes[i], number_of_x_cells, number_of_y_cells);
|
||||||
if (x != -1 && y != -1) {
|
if (x != -1 && y != -1) {
|
||||||
for (j = 0; j < 4; j++) {
|
for (j = 0; j < 4; j++) {
|
||||||
@ -75,7 +77,8 @@ int mark_neighbours_of_the_nodes(int *nodes, int *source_nodes, int *neighbours,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* check if nodes are neighbours */
|
/* check if nodes are neighbours */
|
||||||
int is_neighbours(int node1, int node2, int xn, int yn) {
|
int is_neighbours(int node1, int node2, int xn, int yn)
|
||||||
|
{
|
||||||
int x1, y1, x2, y2;
|
int x1, y1, x2, y2;
|
||||||
|
|
||||||
find_x_y_of_the_node(&x1, &y1, node1, xn, yn);
|
find_x_y_of_the_node(&x1, &y1, node1, xn, yn);
|
||||||
@ -89,11 +92,13 @@ int is_neighbours(int node1, int node2, int xn, int yn) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* find the path between source_node and the target_node
|
/* find the path between source_node and the target_node
|
||||||
result stored in path
|
result stored in path
|
||||||
returns 0 on failure and 1 on success */
|
returns 0 on failure and 1 on success */
|
||||||
int find_path (int *nodes, int source_node, int target_node, int *path,
|
int find_path (int *nodes, int source_node, int target_node, int *path,
|
||||||
int number_of_x_cells, int number_of_y_cells) {
|
int number_of_x_cells, int number_of_y_cells)
|
||||||
|
{
|
||||||
int waves[number_of_x_cells * number_of_y_cells][number_of_x_cells * number_of_y_cells];
|
int waves[number_of_x_cells * number_of_y_cells][number_of_x_cells * number_of_y_cells];
|
||||||
int i, j, k = 1, finish = 0;
|
int i, j, k = 1, finish = 0;
|
||||||
|
|
||||||
@ -101,7 +106,8 @@ int find_path(int *nodes, int source_node, int target_node, int *path,
|
|||||||
waves[0][1] = source_node;
|
waves[0][1] = source_node;
|
||||||
|
|
||||||
nodes[source_node] = -1;
|
nodes[source_node] = -1;
|
||||||
while(!finish) {
|
while (!finish)
|
||||||
|
{
|
||||||
if (!mark_neighbours_of_the_nodes(nodes, waves[k - 1], waves[k], k,
|
if (!mark_neighbours_of_the_nodes(nodes, waves[k - 1], waves[k], k,
|
||||||
number_of_x_cells, number_of_y_cells)) {
|
number_of_x_cells, number_of_y_cells)) {
|
||||||
/* the destination can never be reached */
|
/* the destination can never be reached */
|
||||||
@ -118,7 +124,8 @@ int find_path(int *nodes, int source_node, int target_node, int *path,
|
|||||||
|
|
||||||
path[0] = k;
|
path[0] = k;
|
||||||
path[1] = waves[k - 1][i];
|
path[1] = waves[k - 1][i];
|
||||||
for(j = k - 2; j > 0; j--) {
|
for (j = k - 2; j > 0; j--)
|
||||||
|
{
|
||||||
finish = 0;
|
finish = 0;
|
||||||
for (i = 1; i <= waves[j][0]; i++) {
|
for (i = 1; i <= waves[j][0]; i++) {
|
||||||
if (is_neighbours(waves[j][i], path[k - j - 1],
|
if (is_neighbours(waves[j][i], path[k - j - 1],
|
||||||
|
@ -3,8 +3,10 @@
|
|||||||
|
|
||||||
int find_path (int *nodes, int source_node, int target_node, int *path,
|
int find_path (int *nodes, int source_node, int target_node, int *path,
|
||||||
int number_of_x_cells, int number_of_y_cells);
|
int number_of_x_cells, int number_of_y_cells);
|
||||||
|
|
||||||
void find_x_y_of_the_node (int *x, int *y,
|
void find_x_y_of_the_node (int *x, int *y,
|
||||||
int node, int number_of_x_cells, int number_of_y_cells);
|
int node, int number_of_x_cells, int number_of_y_cells);
|
||||||
|
|
||||||
int find_node_of_x_y (int x, int y, int number_of_x_cells);
|
int find_node_of_x_y (int x, int y, int number_of_x_cells);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user