Pairwise sorting network
The pairwise sorting network is a sorting network discovered and published by Ian Parberry in 1992 in Parallel Processing Letters.[1] The pairwise sorting network has the same size (number of comparators) and depth as the odd–even mergesort network. At the time of publication, the network was one of several known networks with a depth of . It requires comparators and has depth .
Visualization of the Pairwise sorting network with 16 inputs | |
Class | Sorting algorithm |
---|---|
Data structure | Array |
Worst-case performance | parallel time |
Worst-case space complexity | non-parallel time |
The sorting procedure implemented by the network is as follows (guided by the zero-one principle):
- Sort consecutive pairwise bits of the input (corresponds to the first layer of the diagram)
- Sort all pairs into lexicographic order by recursively sorting all odd bits and even bits separately (corresponds to the next 14 layers of the diagram)
- Sort the pairs in nondecreasing order using a specialized network (corresponds to the final layers of the diagram)
References
- Parberry, Ian (1992), "The Pairwise Sorting Network" (PDF), Parallel Processing Letters, 2 (2, 3): 205–211
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.