The Algorithm Design Manual Second Edition



Download 5,51 Mb.
Pdf ko'rish
bet110/488
Sana31.12.2021
Hajmi5,51 Mb.
#273936
1   ...   106   107   108   109   110   111   112   113   ...   488
Bog'liq
2008 Book TheAlgorithmDesignManual

Implementation

The divide-and-conquer mergesort routine follows naturally from the pseudocode:

mergesort(item_type s[], int low, int high)

{

int middle;



/* index of middle element */

if (low < high) {

middle = (low+high)/2;

mergesort(s,low,middle);

mergesort(s,middle+1,high);

merge(s, low, middle, high);

}

}

More challenging turns out to be the details of how the merging is done. The



problem is that we must put our merged array somewhere. To avoid losing an

element by overwriting it in the course of the merge, we first copy each subarray

to a separate queue and merge these elements back into the array. In particular:



4 . 6

Q U I C K S O R T : S O R T I N G B Y R A N D O M I Z A T I O N



123

merge(item_type s[], int low, int middle, int high)

{

int i;


/* counter */

queue buffer1, buffer2; /* buffers to hold elements for merging */

init_queue(&buffer1);

init_queue(&buffer2);

for (i=low; i<=middle; i++) enqueue(&buffer1,s[i]);

for (i=middle+1; i<=high; i++) enqueue(&buffer2,s[i]);

i = low;

while (!(empty_queue(&buffer1) || empty_queue(&buffer2))) {

if (headq(&buffer1) <= headq(&buffer2))

s[i++] = dequeue(&buffer1);

else

s[i++] = dequeue(&buffer2);



}

while (!empty_queue(&buffer1)) s[i++] = dequeue(&buffer1);

while (!empty_queue(&buffer2)) s[i++] = dequeue(&buffer2);

}


Download 5,51 Mb.

Do'stlaringiz bilan baham:
1   ...   106   107   108   109   110   111   112   113   ...   488




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish