Advertisement
KonaJjr

DM_QP

Dec 18th, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.32 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<string.h>
  4. #include<time.h>
  5.  
  6. #define MAX 1000 // Broj bucket-a u hash tablici
  7. #define MAX_LINE_LENGTH 100
  8. #define MAX_WORDS 1000 // Maksimalan broj riječi
  9.  
  10. char *arr[MAX];
  11. int num_elements = 0; // Ukupan broj elemenata u hash tablici
  12. int num_collisions = 0; // Broj kolizija
  13.  
  14. // Inicijalizacija hash tablice
  15. void inicijalizacija() {
  16.     for (int i = 0; i < MAX; i++) {
  17.         arr[i] = NULL;
  18.     }
  19. }
  20.  
  21. // Hash funkcija koristeći Division Method
  22. int hash(char *value) {
  23.     int sum = 0;
  24.     for (int i = 0; value[i] != '\0'; i++) {
  25.         sum += value[i];
  26.     }
  27.     return sum % MAX;
  28. }
  29.  
  30. // Insert funkcija s Quadratic Probingom i brojanjem kolizija
  31. void insert(char *value) {
  32.     if ((float)num_elements / MAX > 0.75) {
  33.         printf("Hash tablica load factor premašuje 0.75. Nove riječi se ne dodaju.\n");
  34.         return;
  35.     }
  36.  
  37.     int index = hash(value);
  38.     int tmp;
  39.     int flag = 0;
  40.     int i = 0;
  41.  
  42.     while (i < MAX) {
  43.         tmp = (index + i * i) % MAX;
  44.         if (arr[tmp] == NULL || strcmp(arr[tmp], "") == 0) {
  45.             arr[tmp] = strdup(value);
  46.             flag = 1;
  47.             break;
  48.         } else {
  49.             num_collisions++; // Kolizija se dogodila
  50.             i++;
  51.         }
  52.     }
  53.  
  54.     if (!flag) {
  55.         printf("Nema slobodnog mjesta za '%s'!\n", value);
  56.     } else {
  57.         num_elements++;
  58.     }
  59. }
  60.  
  61. // Funkcija za mjerenje vremena unosa i brojanje kolizija
  62. void measure_insertion_time(FILE *file) {
  63.     char line[MAX_LINE_LENGTH];
  64.     int word_count = 0;
  65.     clock_t start, end;
  66.     double total_time;
  67.  
  68.     start = clock();
  69.     while (fgets(line, MAX_LINE_LENGTH, file) && word_count < MAX_WORDS) {
  70.         line[strcspn(line, "\n")] = '\0'; // Ukloni novi red
  71.         insert(line);
  72.         word_count++;
  73.     }
  74.     end = clock();
  75.     total_time = ((double)(end - start)) / CLOCKS_PER_SEC;
  76.  
  77.     printf("Vrijeme unosa: %f sekundi\n", total_time);
  78.     printf("Broj riječi: %d\n", word_count);
  79.     printf("Broj kolizija: %d\n", num_collisions);
  80. }
  81.  
  82. int main() {
  83.     FILE *in_file = fopen("words.txt", "r");
  84.     if (!in_file) {
  85.         printf("Nije moguće otvoriti datoteku!\n");
  86.         exit(-1);
  87.     }
  88.  
  89.     inicijalizacija();
  90.     measure_insertion_time(in_file);
  91.  
  92.     fclose(in_file);
  93.     return 0;
  94. }
  95.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement