Advertisement
AleksaLjujic

Untitled

Jun 27th, 2023
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.48 KB | None | 0 0
  1. SAOBRACAJNICA prikazi_najmanje_prometnu(int stanje[], SAOBRACAJNICA niz[], int n) {
  2.     int i, min_index;
  3.     int min_broj_vozila = stanje[niz[0].id];
  4.  
  5.     min_index = niz[0].id;
  6.     for (int i = 0; i < n; i++) {
  7.         int identifikator = niz[i].id;
  8.  
  9.         if (identifikator >= 0 && identifikator < n) {
  10.             int broj_vozila = stanje[identifikator];
  11.  
  12.             if(broj_vozila<min_broj_vozila){
  13.                 min_broj_vozila = broj_vozila;
  14.                 min_index = identifikator;
  15.             }
  16.            
  17.            
  18.         }
  19.     }
  20.     return niz[min_index];
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement