-nodo-

Some C Bullshit

Jan 27th, 2025
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.78 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <stdbool.h>
  4.  
  5. #define size 3
  6.  
  7. bool empty(int allocated) {
  8.     return allocated == 0;
  9. }
  10.  
  11. bool full(int allocated) {
  12.     return allocated == size -1;
  13. }
  14.  
  15. void state(int* fifo, int allocated) {
  16.     if (empty(allocated)) printf("[?] Kolejka pusta\n");
  17.     else if (full(allocated)) printf("[?] Kolejka pełna\n");
  18.     else printf("[?] Kolejna niepełna i niepusta");
  19. }
  20.  
  21. void show(int* fifo, int allocated) {
  22.     printf("[?] Wypisywanie:\n");
  23.     for (int i = 0; i < allocated; i++) {
  24.         printf("fifo[%d] =\t%d\n", i, fifo[i]);
  25.     }
  26. }
  27.  
  28. bool push(int* fifo, int* allocated, int el) {
  29.     if (*allocated + 1 > size) return 0;
  30.     printf("[+] Dodwanie: %d\n", el);
  31.     fifo[*allocated] = el;
  32.     *allocated += 1;
  33.     return 1;
  34. }
  35.  
  36. bool pop(int* fifo, int* allocated) {
  37.     if (*allocated == 0) return 0;
  38.     fifo[0] = fifo[1];
  39.  
  40.     for (int i = 0; i < *allocated; i++) {
  41.         fifo[i] = fifo[i+1];
  42.     }
  43.  
  44.     *allocated = *allocated-1;
  45.     return 1;
  46. }
  47.  
  48. char menu();
  49.  
  50. int main() {
  51.     int fifo[size];
  52.     int allocated = 0;
  53.  
  54.     do {
  55.         char opc = menu(allocated);
  56.         switch (opc) {
  57.             case 'W':
  58.                 printf ("\n---obsługa wypisania zawartości kolejki---\n");
  59.                 show(fifo, allocated);
  60.  
  61.             break;
  62.  
  63.             case 'S':
  64.                 printf ("\n---obsługa wypisania stanu kolejki (pusta/pelna)---\n");
  65.                 state(fifo, allocated);
  66.             break;
  67.  
  68.             case 'A':
  69.                 int el;
  70.                 printf ("\n---obsluga dolozenia elementu do kolejki---\n");
  71.                 printf("Podaj element: ");
  72.                 scanf("%d", &el);
  73.                 if(!push(fifo, &allocated, el)) printf("[!] Brak miejsca w kolejce!");
  74.             break;
  75.  
  76.             case 'Z':
  77.                 printf("\n---obsługa zebrania elementu z kolejki---\n");
  78.                 if(!pop(fifo, &allocated)) printf("[!] Kolejka jest pusta");
  79.             break;
  80.  
  81.             case 'K':
  82.                 printf ("[?] Koniec\n");
  83.                 return 0;
  84.             break;
  85.  
  86.         }
  87.     } while (getchar(), getchar());
  88.  
  89.     return 0;
  90. }
  91.  
  92. char menu (int allocated) {
  93.     char opcja = 'X';
  94.  
  95.     while ((opcja != 'W') && (opcja != 'S') && (opcja != 'A') && (opcja != 'Z') && (opcja != 'K')) {
  96.         system("@cls||clear");
  97.         printf ("Wybierz opcje (%d/%d):\n", allocated, size);
  98.         printf ("W - Wypisanie zawartosci kolejki\n");
  99.         printf ("S - Wypisanie stanu kolejki (pusta/pelna)\n");
  100.         printf ("A - Dolozenie elementu do kolejki\n");
  101.         printf ("Z - Zebranie elementu z kolejki\n");
  102.         printf ("K - Koniec \n");
  103.         printf ("Podaj opcję: ");
  104.         scanf ("%c", &opcja);
  105.     }
  106.  
  107.     return opcja;
  108. }
  109.  
Add Comment
Please, Sign In to add comment