O’ZBEKISTON RESPUBLIKASI AXBOROT TEXNOLOGIYALARI VA KOMMUNIKATSIYALARINI RIVOJLANTIRISH VAZIRLIGI MUHAMMAD AL-XORAZMIY NOMIDAGI TOSHKENT AXBOROT TEXNOLOGIYALARI UNIVERSITETI
Dasturlash II
Laboratoriya 3
Ramazonov Shamshod
Variant 24
1. Ustivor_navbat eng kichik elementi topilsin va undan keyin 0 joylashtirilsin.
#include
#include
using namespace std;
int main (){
priority_queue mypq;
int n,a;
cout<<"Nechta element kiritmoqchisiz: ";
cin>>n;
for(int i=0;icin>>a;
mypq.emplace(a);
}
mypq.push(0);
while (!mypq.empty()){
cout << ' ' << mypq.top();
mypq.pop();
}
return 0;
}
Do'stlaringiz bilan baham: |