Skip to content
Snippets Groups Projects
Commit 991f3db6 authored by Taha Belkhiri's avatar Taha Belkhiri
Browse files

début detection de cycles

parent b3ddda47
No related branches found
No related tags found
No related merge requests found
No preview for this file type
...@@ -4,6 +4,8 @@ int MAPSIZE = 20; ...@@ -4,6 +4,8 @@ int MAPSIZE = 20;
int ** map; int ** map;
int *** mapList;
void allocateMap(){ void allocateMap(){
map = malloc(MAPSIZE * sizeof(int*)); map = malloc(MAPSIZE * sizeof(int*));
for(int i = 0; i < MAPSIZE; i++){ for(int i = 0; i < MAPSIZE; i++){
...@@ -11,9 +13,14 @@ void allocateMap(){ ...@@ -11,9 +13,14 @@ void allocateMap(){
} }
} }
void allocateMapList(int SIZE){
mapList = malloc(SIZE * sizeof(int**));
}
void initMap() { void initMap() {
allocateMap(); allocateMap();
allocateMapList(100);
for(int i = 0; i < MAPSIZE; i++){ for(int i = 0; i < MAPSIZE; i++){
for(int j = 0; j < MAPSIZE; j++){ for(int j = 0; j < MAPSIZE; j++){
map[i][j] = 0; map[i][j] = 0;
...@@ -41,4 +48,36 @@ void writeMap(char* filename){ ...@@ -41,4 +48,36 @@ void writeMap(char* filename){
fprintf(f, "\n"); fprintf(f, "\n");
} }
fclose(f); fclose(f);
}
int ** saveMapState(){
int ** mapCopy = malloc(MAPSIZE * sizeof(int*));
for(int i = 0; i < MAPSIZE; i++){
mapCopy[i] = malloc(MAPSIZE * sizeof(int));
}
for(int i = 0; i < MAPSIZE; i++){
for(int j = 0; j < MAPSIZE; j++){
mapCopy[i][j] = map[i][j];
}
}
return mapCopy;
}
void addMapToList(int ** map){
int i = 0;
while(mapList[i] != NULL){
i++;
}
mapList[i] = map;
}
void checkForCycle(){
int i = 0;
while(mapList[i] != NULL){
if(mapList[i] == map){
printf("Cycle detected at iteration: %d\n", i);
return;
}
i++;
}
} }
\ No newline at end of file
...@@ -5,9 +5,13 @@ ...@@ -5,9 +5,13 @@
extern int MAPSIZE; extern int MAPSIZE;
extern int ** map; extern int ** map;
extern int *** mapList;
void printMap(); void printMap();
void initMap(); void initMap();
void writeMap(char* filename); void writeMap(char* filename);
void checkForCycle();
void addMapToList(int ** map);
int ** saveMapState();
#endif #endif
\ No newline at end of file
...@@ -17,6 +17,7 @@ int survivingNeighbors(int x, int y){ ...@@ -17,6 +17,7 @@ int survivingNeighbors(int x, int y){
void updateMap(){ void updateMap(){
int newMap[MAPSIZE][MAPSIZE]; int newMap[MAPSIZE][MAPSIZE];
int stable = 1;
for (int i=0; i<MAPSIZE; i++){ for (int i=0; i<MAPSIZE; i++){
for (int j=0; j<MAPSIZE; j++){ for (int j=0; j<MAPSIZE; j++){
int count = survivingNeighbors(j, i); int count = survivingNeighbors(j, i);
...@@ -30,10 +31,24 @@ void updateMap(){ ...@@ -30,10 +31,24 @@ void updateMap(){
} }
} }
} }
for (int i=0; i<MAPSIZE; i++){
for (int j=0; j<MAPSIZE; j++){
if (newMap[j][i] != map[j][i]) stable = 0;
}
}
if (stable){
printf("Stable state reached.\n");
}
for (int i=0; i<MAPSIZE; i++){ for (int i=0; i<MAPSIZE; i++){
for (int j=0; j<MAPSIZE; j++){ for (int j=0; j<MAPSIZE; j++){
map[i][j] = newMap[i][j]; map[i][j] = newMap[i][j];
} }
} }
addMapToList(map);
checkForCycle();
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment