From 207d93b31775c919d786d77e4c92d52371073f02 Mon Sep 17 00:00:00 2001 From: Bastian Date: Sat, 25 Oct 2025 18:14:53 +0200 Subject: [PATCH] =?UTF-8?q?Alle=20W=C3=B6rter=20werden=20erfolgreich=20in?= =?UTF-8?q?=20den=20Wortsalat=20gepackt=20und=20der=20Salat=20kann=20?= =?UTF-8?q?=C3=BCber=20die=20Console=20ausgegeben=20werden.=20Es=20m=C3=BC?= =?UTF-8?q?ssen=20nur=20noch=20alle=20leeren=20'#'=20Felder=20mit=20zuf?= =?UTF-8?q?=C3=A4lligen=20Buchstaben=20gef=C3=BCllt=20werden.=20Aber=20das?= =?UTF-8?q?=20wird=20am=20ende=20Gemacht=20wenn=20alles=20passt=20um=20ein?= =?UTF-8?q?facher=20zu=20schauen=20was=20klappt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Start_Windows/game.c | 41 +++++++++++++++++++++++++++++++---------- Start_Windows/game.h | 4 ++-- Start_Windows/main.c | 20 +++++++++++++++++++- 3 files changed, 52 insertions(+), 13 deletions(-) diff --git a/Start_Windows/game.c b/Start_Windows/game.c index d286ad0..55bb062 100644 --- a/Start_Windows/game.c +++ b/Start_Windows/game.c @@ -2,6 +2,7 @@ #include #include #include +#include #define MAX_RAND_TRIES_PER_WORD 10 @@ -28,26 +29,28 @@ int checkforOverlap(char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN], shor // Creates the word salad by placing words randomly and filling empty spaces int createWordSalad(char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN], unsigned int searchFieldLen, const char words[][MAX_WORD_LEN], unsigned int wordCount) { - for(short i = searchFieldLen; i>0; i--) + for(short i = 0; i < searchFieldLen; i++) { - for(short j = searchFieldLen; j>0; j--) - { - salad[i][j]= "#"; - } + for(short j = 0; j < searchFieldLen; j++) + { + salad[i][j] = '#'; + } } - + srand(time(NULL)); for(short i = wordCount;i>0;i--) { size_t platzbedarf = strlen(words[i-1]); - if (platzbedarf >= searchFieldLen) + if (platzbedarf > searchFieldLen) { - printf("%s konnte nicht eingefuegt werden da es groeßer als das Feld ist",words[wordCount-1]); + printf("%s konnte nicht eingefuegt werden da es groesser als das Feld ist\n",words[i-1]); continue; } - srand(time(NULL)); short x,y,waagrecht; + int zuoft = enoughTries(searchFieldLen,0.99); + int versuche = 0; do { + versuche++; short max = searchFieldLen - platzbedarf; short position1 = rand() % (max +1); short position2 = rand() % (searchFieldLen); @@ -56,7 +59,18 @@ int createWordSalad(char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN], unsi y = (waagrecht) ? position2:position1; - }while(checkforOverlap(salad,x,y,waagrecht,words[i-1])!=1); + }while(checkforOverlap(salad,x,y,waagrecht,words[i-1])!=1 && versuche<=zuoft); + if(versuche > zuoft) + { + printf("%s passt nicht mehr ins Gitter\n",words[i-1]); + continue; + } + for(size_t k = 0 ; k < strlen(words[i-1]); k++ ) + { + short xoffset = (waagrecht) ? k : 0; + short yoffset = (waagrecht) ? 0 : k; + salad[x+xoffset][y+yoffset]=words[i-1][k]; + } } @@ -75,3 +89,10 @@ void showWordSalad(const char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN], } } +int enoughTries(double feldgroesse, double sicherheit) { + double moeglichkeiten = feldgroesse * feldgroesse; // Anzahl der Möglichkeiten + double c = -log(-log(sicherheit)); // Zusatzterm aus Zielwahrscheinlichkeit + double versuche = moeglichkeiten * (log(moeglichkeiten) + c); // Coupon-Collector-Formel + return (int)ceil(versuche); +} + diff --git a/Start_Windows/game.h b/Start_Windows/game.h index 95346af..c04d08f 100644 --- a/Start_Windows/game.h +++ b/Start_Windows/game.h @@ -4,8 +4,8 @@ #include "input.h" #define MAX_SEARCH_FIELD_LEN 100 - +int checkforOverlap(char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN], short x, short y, short richtung, const char wort[]); int createWordSalad(char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN], unsigned int searchFieldLen, const char words[][MAX_WORD_LEN], unsigned int wordCount); void showWordSalad(const char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN], unsigned int searchFieldLen); - +int enoughTries(double feldgroesse, double sicherheit); #endif diff --git a/Start_Windows/main.c b/Start_Windows/main.c index 03da755..9b35cdb 100644 --- a/Start_Windows/main.c +++ b/Start_Windows/main.c @@ -9,7 +9,24 @@ int main(int argc, char *argv[]) { - int exitCode = EXIT_SUCCESS; + /*char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN]; + char words[MAX_NUMBER_OF_WORDS][100] = + { + "TESTN", + "KATZE", + "ENTE", + "BEERE", + "FEE", + "KLEE", + "Feheler", + "SEE", + }; + int wordCount = 8; + createWordSalad(salad,5, words,wordCount); + showWordSalad(salad,5); + + */ + int exitCode = EXIT_SUCCESS; // Check if the correct number of arguments is provided if(argc != 2) @@ -51,4 +68,5 @@ int main(int argc, char *argv[]) } return exitCode; + } \ No newline at end of file