Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SAOBRACAJNICA prikazi_najmanje_prometnu(int stanje[], SAOBRACAJNICA niz[], int n) {
- int i, min_index;
- int min_broj_vozila = stanje[niz[0].id];
- min_index = niz[0].id;
- for (int i = 0; i < n; i++) {
- int identifikator = niz[i].id;
- if (identifikator >= 0 && identifikator < n) {
- int broj_vozila = stanje[identifikator];
- if(broj_vozila<min_broj_vozila){
- min_broj_vozila = broj_vozila;
- min_index = identifikator;
- }
- }
- }
- return niz[min_index];
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement