up ){a[j]=a[j-h];j=j- ... 香港 Xocat Forum 討論區 香港討論區 - Discuz! Archiver" />

推介:| Web Hosting | 外賣系統 | Server colocation | Web Shop System | Makeup course |

查看完整版本: Shell Sorting

白色情人 2008-10-3 22:30

Shell Sorting

anyone would tell me what is shell sorting?What is "Knuth"order (以 3h+1 速度遞增)?

void Shell_sorting(int a[], int n)
{

int i, j, h, up;



for(h=1; h<=n/9; h=3*h+1)



for(; h>0; h=h/3)



for(i=h; i<n; i++)

{

up=a[i];

j=i;



while( j>=h && a[j-h]>up )

{

a[j]=a[j-h];

j=j-h;

}



a[j]=up;

}
}

Would anyone would explain how the three for-loops going on?
What are their purposes?

arararchchch 2008-10-3 23:32

Very sorry that I am not learning C or C++ or Java...

But I am learning Pascal

jayzhou_2046 2008-10-3 23:51

樓主可以先參考一下Wikipedia有關的資料:
[url=http://en.wikipedia.org/wiki/Shell_sort]http://en.wikipedia.org/wiki/Shell_sort[/url]
頁: [1]
查看完整版本: Shell Sorting