The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: Geryon on September 24, 2005, 11:10:44 PM

Title: Shellsort and optimization
Post by: Geryon on September 24, 2005, 11:10:44 PM
i'm working on sorting algortihms and i found strange code for Shell sort (http://en.wikipedia.org/wiki/Shell_sort) in The Art Of Programming Volume 3 (Donald E. Knuth) it'a self modifying code for NIX machine. Now i have lots of questions in my head.
What do you thing about self modifying codes ? Is it good for  speed/size optimization ? would you give some samples ?
What is the basic tricks ?

Thank for your interested and i'm sorry for my garbage english.

Title: Re: Shellsort and optimization
Post by: hutch-- on September 24, 2005, 11:35:50 PM
Geryon,

Just code it up and see if it works OK. The fastest shell sort I have seen is a design by Janet Incerpi and Robert Sedgewick and I have the example floating around somewhere but note that a shell sort can be beaten for speed by a quick sort and can be beaten for robustness in terms of data ordering by a variety of other designs.
Title: Re: Shellsort and optimization
Post by: Geryon on September 25, 2005, 09:03:06 AM
Quote from: hutch-- on September 24, 2005, 11:35:50 PM
Just code it up and see if it works OK.
really ?! do you read all of the my post ?
Quote from: hutch-- on September 24, 2005, 11:35:50 PM
The fastest shell sort I have seen is a design by Janet Incerpi and Robert Sedgewick and I have the example floating around somewhere but note that a shell sort can be beaten for speed by a quick sort and can be beaten for robustness in terms of data ordering by a variety of other designs.
ok i will search this at google
Title: Re: Shellsort and optimization
Post by: hutch-- on September 25, 2005, 12:23:22 PM
I found it. You have the C algo it was derived from, a manually optimised version and an unoptimesed version to play with.

[attachment deleted by admin]
Title: Re: Shellsort and optimization
Post by: Geryon on September 25, 2005, 02:40:40 PM
Thanks