language-icon Old Web
English
Sign In

Proxmap sort

ProxmapSort, or Proxmap sort, is a sorting algorithm that works by partitioning an array of data items, or keys, into a number of 'subarrays' (termed buckets, in similar sorts). The name is short for computing a 'proximity map,' which indicates for each key K the beginning of a subarray where K will reside in the final sorted order. Keys are placed into each subarray using insertion sort. If keys are 'well distributed' among the subarrays, sorting occurs in linear time. The computational complexity estimates involve the number of subarrays and the proximity mapping function, the 'map key,' used. It is a form of bucket and radix sort. ProxmapSort, or Proxmap sort, is a sorting algorithm that works by partitioning an array of data items, or keys, into a number of 'subarrays' (termed buckets, in similar sorts). The name is short for computing a 'proximity map,' which indicates for each key K the beginning of a subarray where K will reside in the final sorted order. Keys are placed into each subarray using insertion sort. If keys are 'well distributed' among the subarrays, sorting occurs in linear time. The computational complexity estimates involve the number of subarrays and the proximity mapping function, the 'map key,' used. It is a form of bucket and radix sort. Once a ProxmapSort is complete, ProxmapSearch can be used to find keys in the sorted array in O ( 1 ) {displaystyle O(1)} time if the keys were well distributed during the sort. Both algorithms were invented in the late 1980s by Prof. Thomas A. Standish at the University of California, Irvine. In general:Given an array A with n keys: Simplied version:Given an array A with n keys

[ "Merge sort", "Insertion sort", "External sorting", "Counting sort", "Adaptive sort" ]
Parent Topic
Child Topic
    No Parent Topic