Gnome sort: Difference between revisions
Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.5 |
Citation bot (talk | contribs) Altered archive-url. URLs might have been anonymized. | Use this bot. Report bugs. | Suggested by Dominic3203 | Category:Stable sorts | #UCB_Category 10/18 |
||
(21 intermediate revisions by 14 users not shown) | |||
Line 1: | Line 1: | ||
{{Short description|Sorting algorithm}} |
|||
{{Refimprove|date=August 2010}} |
{{Refimprove|date=August 2010}} |
||
⚫ | |||
|image=[[File:Sorting gnomesort anim.gif]] |
|||
{{Infobox Algorithm |
|||
⚫ | |||
⚫ | |||
|image=Visualization of Gnome sort.gif |
|||
⚫ | |||
|data=[[Array data structure|Array]] |
|data=[[Array data structure|Array]] |
||
|time=<math>O(n^2)</math> |
|time=<math>O(n^2)</math> |
||
Line 8: | Line 11: | ||
|average-time= <math>O(n^2)</math> |
|average-time= <math>O(n^2)</math> |
||
|space= <math>O(1)</math> auxiliary |
|space= <math>O(1)</math> auxiliary |
||
|optimal= No |
|||
}} |
}} |
||
'''Gnome sort''' ( |
'''Gnome sort''' (nicknamed '''stupid sort''') is a variation of the [[insertion sort]] [[sorting algorithm]] that does not use nested loops. Gnome sort was originally proposed by [[Iran]]ian computer scientist [[Hamid Sarbazi-Azad]] (professor of Computer Science and Engineering at [[Sharif University of Technology]])<ref>{{Cite web|url=http://sharif.edu/~azad/|title=Hamid Sarbazi-Azad profile page|last=Hamid|first=Sarbazi-Azad|archive-url=https://web.archive.org/web/20181016164904/http://sharif.edu/~azad/|archive-date=2018-10-16|url-status=live|access-date=October 16, 2018}}</ref> in 2000. The sort was first called ''stupid sort''<ref>{{cite journal |
||
|last = Sarbazi-Azad |
|last = Sarbazi-Azad |
||
|first = Hamid |
|first = Hamid |
||
Line 20: | Line 22: | ||
|issue = 599 |
|issue = 599 |
||
|page = 4 |
|page = 4 |
||
| |
|access-date = 25 November 2014 |
||
|archive-url = https://web.archive.org/web/20120307235904/http://sina.sharif.edu/~azad/stupid-sort.PDF |
|archive-url = https://web.archive.org/web/20120307235904/http://sina.sharif.edu/~azad/stupid-sort.PDF |
||
|archive-date = 7 March 2012 |
|archive-date = 7 March 2012 |
||
|url-status = |
|url-status = live |
||
}}</ref> (not to be confused with [[bogosort]]), and then later described by [[Dick Grune]] and named ''gnome sort''.<ref name="DGrune">{{cite web |url=http://www.dickgrune.com/Programs/gnomesort.html |title=Gnome Sort - The Simplest Sort Algorithm |website=Dickgrune.com |date=2000-10-02 | |
}}</ref> (not to be confused with [[bogosort]]), and then later described by [[Dick Grune]] and named ''gnome sort''.<ref name="DGrune">{{cite web |url=http://www.dickgrune.com/Programs/gnomesort.html |title=Gnome Sort - The Simplest Sort Algorithm |website=Dickgrune.com |date=2000-10-02 |access-date=2017-07-20 |archive-url=https://web.archive.org/web/20170831222005/https://dickgrune.com/Programs/gnomesort.html |archive-date=2017-08-31 |url-status=live }}</ref> |
||
Gnome sort performs at least as many comparisons as [[insertion sort]] and has the same [[asymptotic run time]] characteristics. Gnome sort works by building a sorted list one element at a time, getting each item to the proper place in a series of swaps. The average running time is [[Big O notation|''O'']](''n''<sup>2</sup>) but tends towards ''O''(''n'') if the list is initially almost sorted.<ref>{{cite web |
|||
|url = http://xlinux.nist.gov/dads/HTML/gnomeSort.html |
|url = http://xlinux.nist.gov/dads/HTML/gnomeSort.html |
||
|title = gnome sort |
|title = gnome sort |
||
Line 32: | Line 34: | ||
|publisher = U.S. National Institute of Standards and Technology |
|publisher = U.S. National Institute of Standards and Technology |
||
|author = Paul E. Black |
|author = Paul E. Black |
||
| |
|access-date = 2011-08-20 |
||
|archive-url = https://web.archive.org/web/20110811012120/http://xlinux.nist.gov/dads//HTML/gnomeSort.html |
|archive-url = https://web.archive.org/web/20110811012120/http://xlinux.nist.gov/dads//HTML/gnomeSort.html |
||
|archive-date = 2011-08-11 |
|archive-date = 2011-08-11 |
||
|url-status = live |
|url-status = live |
||
}}</ref><ref group="note">''Almost sorted'' means that each item in the list is not far from its proper position (not farther than some small constant distance).</ref> |
}}</ref><ref group="note">''Almost sorted'' means that each item in the list is not far from its proper position (not farther than some small constant distance).</ref> |
||
⚫ | |||
The algorithm finds the first place where two adjacent elements are in the wrong order and swaps them. It takes advantage of the fact that performing a swap can introduce a new out-of-order adjacent pair next to the previously swapped elements. It does not assume that elements forward of the current position are sorted, so it only needs to check the position directly previous to the swapped elements. |
|||
== Description == |
|||
⚫ | |||
{{quote| |
{{quote| |
||
Gnome Sort is based on the technique used by the standard Dutch [[garden gnome|Garden Gnome]] (Du.: [[:nl:tuinkabouter|tuinkabouter]]). <br /> |
Gnome Sort is based on the technique used by the standard Dutch [[garden gnome|Garden Gnome]] (Du.: [[:nl:tuinkabouter|tuinkabouter]]). <br /> |
||
Line 50: | Line 49: | ||
|sign=| source="Gnome Sort - The Simplest Sort Algorithm". ''Dickgrune.com''}} |
|sign=| source="Gnome Sort - The Simplest Sort Algorithm". ''Dickgrune.com''}} |
||
== Pseudocode == |
|||
Here is [[pseudocode]] for the gnome sort using a [[zero-based array]]: |
Here is [[pseudocode]] for the gnome sort using a [[zero-based array]]: |
||
⚫ | |||
<syntaxhighlight lang="text"> |
|||
⚫ | |||
pos := 0 |
pos := 0 |
||
while pos < length(a): |
'''while''' pos < length(a): |
||
if (pos == 0 or a[pos] >= a[pos-1]): |
'''if''' (pos == 0 '''or''' a[pos] >= a[pos-1]): |
||
pos := pos + 1 |
pos := pos + 1 |
||
else: |
'''else''': |
||
swap a[pos] and a[pos-1] |
'''swap''' a[pos] '''and''' a[pos-1] |
||
pos := pos - 1 |
pos := pos - 1 |
||
</syntaxhighlight> |
|||
===Example=== |
===Example=== |
||
Line 71: | Line 67: | ||
|- |
|- |
||
! Current array |
! Current array |
||
! < |
! <code>pos</code> |
||
! Condition in effect |
! Condition in effect |
||
! Action to take |
! Action to take |
||
Line 101: | Line 97: | ||
|| [2, 3, 4, 5] || 4 || pos == length(a) || finished |
|| [2, 3, 4, 5] || 4 || pos == length(a) || finished |
||
|} |
|} |
||
==Optimization== |
|||
{{unreferenced section|date=November 2015}} |
|||
The gnome sort may be optimized by introducing a variable to store the position before traversing back toward the beginning of the list. With this optimization, the gnome sort would become a variant of the [[insertion sort]]. |
|||
Here is [[pseudocode]] for an optimized gnome sort using a [[zero-based array]]: |
|||
<syntaxhighlight lang="text" line="1"> |
|||
procedure optimizedGnomeSort(a[]): |
|||
for pos in 1 to length(a): |
|||
gnomeSort(a, pos) |
|||
procedure gnomeSort(a[], upperBound): |
|||
pos := upperBound |
|||
while pos > 0 and a[pos-1] > a[pos]: |
|||
swap a[pos-1] and a[pos] |
|||
pos := pos - 1 |
|||
</syntaxhighlight> |
|||
==Notes== |
==Notes== |
||
Line 132: | Line 110: | ||
{{DEFAULTSORT:Gnome Sort}} |
{{DEFAULTSORT:Gnome Sort}} |
||
[[Category:Sorting algorithms]] |
|||
[[Category:Comparison sorts]] |
[[Category:Comparison sorts]] |
||
[[Category:Stable sorts]] |
[[Category:Stable sorts]] |
Latest revision as of 09:58, 24 October 2024
This article needs additional citations for verification. (August 2010) |
Class | Sorting algorithm |
---|---|
Data structure | Array |
Worst-case performance | |
Best-case performance | |
Average performance | |
Worst-case space complexity | auxiliary |
Gnome sort (nicknamed stupid sort) is a variation of the insertion sort sorting algorithm that does not use nested loops. Gnome sort was originally proposed by Iranian computer scientist Hamid Sarbazi-Azad (professor of Computer Science and Engineering at Sharif University of Technology)[1] in 2000. The sort was first called stupid sort[2] (not to be confused with bogosort), and then later described by Dick Grune and named gnome sort.[3]
Gnome sort performs at least as many comparisons as insertion sort and has the same asymptotic run time characteristics. Gnome sort works by building a sorted list one element at a time, getting each item to the proper place in a series of swaps. The average running time is O(n2) but tends towards O(n) if the list is initially almost sorted.[4][note 1]
Dick Grune described the sorting method with the following story:[3]
Gnome Sort is based on the technique used by the standard Dutch Garden Gnome (Du.: tuinkabouter).
Here is how a garden gnome sorts a line of flower pots.
Basically, he looks at the flower pot next to him and the previous one; if they are in the right order he steps one pot forward, otherwise, he swaps them and steps one pot backward.
Boundary conditions: if there is no previous pot, he steps forwards; if there is no pot next to him, he is done.— "Gnome Sort - The Simplest Sort Algorithm". Dickgrune.com
Pseudocode
[edit]Here is pseudocode for the gnome sort using a zero-based array:
procedure gnomeSort(a[]): pos := 0 while pos < length(a): if (pos == 0 or a[pos] >= a[pos-1]): pos := pos + 1 else: swap a[pos] and a[pos-1] pos := pos - 1
Example
[edit]Given an unsorted array, a = [5, 3, 2, 4], the gnome sort takes the following steps during the while loop. The current position is highlighted in bold and indicated as a value of the variable pos
.
Current array | pos
|
Condition in effect | Action to take |
---|---|---|---|
[5, 3, 2, 4] | 0 | pos == 0 | increment pos |
[5, 3, 2, 4] | 1 | a[pos] < a[pos-1] | swap, decrement pos |
[3, 5, 2, 4] | 0 | pos == 0 | increment pos |
[3, 5, 2, 4] | 1 | a[pos] ≥ a[pos-1] | increment pos |
[3, 5, 2, 4] | 2 | a[pos] < a[pos-1] | swap, decrement pos |
[3, 2, 5, 4] | 1 | a[pos] < a[pos-1] | swap, decrement pos |
[2, 3, 5, 4] | 0 | pos == 0 | increment pos |
[2, 3, 5, 4] | 1 | a[pos] ≥ a[pos-1] | increment pos |
[2, 3, 5, 4] | 2 | a[pos] ≥ a[pos-1] | increment pos: |
[2, 3, 5, 4] | 3 | a[pos] < a[pos-1] | swap, decrement pos |
[2, 3, 4, 5] | 2 | a[pos] ≥ a[pos-1] | increment pos |
[2, 3, 4, 5] | 3 | a[pos] ≥ a[pos-1] | increment pos |
[2, 3, 4, 5] | 4 | pos == length(a) | finished |
Notes
[edit]- ^ Almost sorted means that each item in the list is not far from its proper position (not farther than some small constant distance).
References
[edit]- ^ Hamid, Sarbazi-Azad. "Hamid Sarbazi-Azad profile page". Archived from the original on 2018-10-16. Retrieved October 16, 2018.
- ^ Sarbazi-Azad, Hamid (2 October 2000). "Stupid Sort: A new sorting algorithm" (PDF). Newsletter (599). Computing Science Department, Univ. of Glasgow: 4. Archived (PDF) from the original on 7 March 2012. Retrieved 25 November 2014.
- ^ a b "Gnome Sort - The Simplest Sort Algorithm". Dickgrune.com. 2000-10-02. Archived from the original on 2017-08-31. Retrieved 2017-07-20.
- ^ Paul E. Black. "gnome sort". Dictionary of Algorithms and Data Structures. U.S. National Institute of Standards and Technology. Archived from the original on 2011-08-11. Retrieved 2011-08-20.