Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.
/ LampSort Public archive

simple implementation of Lamport's iterative variant of quicksort

License

Notifications You must be signed in to change notification settings

faf0/LampSort

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

About

This is an implementation of Lamport's iterative (non-recursive) variant of the quicksort sorting algorithm in Java. Bertrand Meyer provides a description of the algorithm on his blog and references a video showing Leslie Lamport's original description.

The idea is to maintain the bounds of the intervals to sort in a set. Initially, the set contains only the bounds of the whole interval that is to be sorted. In each iteration, interval bounds are removed from the set and if the interval contains more than one element, quicksort's partition algorithm is carried out on the elements within the interval. Partition produces two subintervals which are added to the set. When the set is empty, the algorithm terminates.

The partitioning part of the implementation simply picks the element with the highest index as the pivot element.

License

The code is licensed under the GNU LGPL, version 3. Feel free to use and improve the code.

Copyright

Copyright 2015 Fabian Foerg

About

simple implementation of Lamport's iterative variant of quicksort

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages