Pairwise sorting network

The pairwise sorting network is a sorting network discovered and published by Ian Parberry in 1992 in Parallel Processing Letters.

The sorting procedure implemented by the network is as follows (guided by the zero-one principle): The pairwise sorting network is very similar to the Batcher odd-even mergesort, but differs in the structure of operations.

While Batcher repeatedly divides, sorts and merges increasingly longer subsequences, the pairwise method does all the subdivision first, then does all the merging at the end in the reverse sequence.

In certain applications like encoding cardinality constraints, the pairwise sorting network is superior to the Batcher network.

This algorithms or data structures-related article is a stub.