Advertisement
luluinstalock

Untitled

Jan 26th, 2016
1,786
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. struct Node{
  6.     int x;
  7.     struct Node *next;
  8. };
  9.  
  10. int main(){
  11.     srand(time(NULL));
  12.     struct Node *head;
  13.     head = malloc(sizeof(struct Node));
  14.     head->x = (rand() % 9 + 1 );
  15.    
  16.     printf ("%d \n", head->x);
  17.    
  18.     struct Node *tail;
  19.     tail = head;
  20.    
  21.     for(int i=0; i<99; i++){
  22.         struct Node *tmp;
  23.         tmp = malloc(sizeof(struct Node));
  24.        
  25.         tmp->x = (rand() % 9 + 1 );
  26.        
  27.         tail->next=tmp;
  28.         tmp->next=NULL;
  29.         tail = tmp;
  30.        
  31.         printf("%d \n", tmp->x);
  32.        
  33.     }
  34.    
  35.     // szukamy min
  36.     int min = head->x;
  37.     int count = 0;
  38.     struct Node *temp = head;
  39.     for(int i=0; i<100; i++){
  40.         if (min > temp->x){
  41.             min = temp->x;
  42.             count = 1;
  43.         }
  44.         else if( min == temp->x){
  45.             count++;
  46.         }
  47.         temp=temp->next;
  48.        
  49.     }
  50.     printf("ilosc wystepowania minimalnej liczby: %d \n", count);
  51.    
  52.     free(temp);
  53.     free(head);
  54.     free(tail);
  55.     return 0;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement