分佈排序(distribution sorts)算法大串講

ref : https://dsqiu.iteye.com/blog/1707383html


 

 

 

本文內容框架:ios

§1 鴿巢排序(Pigeonhole)git

§2 桶排序(Bucket Sort)web

  §3 基數排序(Radix Sort)面試

 

§4 計數排序(Counting Sort)算法

§5 Proxmap Sort數組

  §6 珠排序(Bead Sort)數據結構

          §7 小結app

本文介紹的排序算法是基於分配、收集的排序算法,分配排序的基本思想:排序過程無須比較關鍵字,而是經過"分配"和"收集"過程來實現排序.它們的時間複雜度可達到線性階:O(n)。不受比較排序算法時間複雜度O(nlogn)的下限限制。框架

 

§1 鴿巢排序(Pigeonhole)

 

鴿巢排序(Pigeonhole sort)

鴿巢排序(Pigeonhole sort),也被稱做基數分類, 是一種時間複雜度爲O(n)且在不可避免遍歷每個元素而且排序的狀況下效率最好的一種排序算法。但它只有在差值(或者可被映射在差值)很小的範圍內的數值排序的狀況下實用,同時也要求元素個數(n)和成爲索引的值(N)大小至關。

鴿巢排序(Pigeonhole sort)算法的時間複雜度都是O(N+n),空間複雜度是O(N)。

 

鴿巢排序(Pigeonhole sort)算法的思想就是使用一個輔助數組,這個輔助數組的下標對應要排序數組的元素值即便用輔助數組的下標進行排序,輔助數組元素的值記錄該下標元素值的在要排序數組中的個數。

鴿巢排序(Pigeonhole sort)算法步驟:

 

1.對於給定的一組要排序的數組,須要初始化一個空的輔助數組(「鴿巢」),把初始數組中的每一個值做爲一個key(「鴿巢」)即輔助數組的索引便是待排序數組的值。

2.遍歷初始數組,根據每一個值放入輔助數組對應的「鴿巢」

3.順序遍歷輔助數組,把輔助數組「鴿巢」中不爲空的數放回初始數組中

 

 

 

鴿巢排序(Pigeonhole sort)算法實現舉例

C代碼   收藏代碼
  1. void PigeonholeSort(int *array, int length)  
  2. {  
  3.     int b[256] = {0};  
  4.     int i,k,j = 0;  
  5.     for(i=0; i<length; i++)  
  6.         b[array[i]]++;  
  7.     for(i=0; i<256; i++)  
  8.         for(k=0; k<b[i]; k++)  
  9.             array[j++] = i;  
  10. }   

其實做者以爲鴿巢排序(Pigeonhole sort)的原理跟哈希表的原理相似——根據關鍵字的key就能夠獲得關鍵字的存儲位置。

 

 

 

§2 桶排序(Bucket Sort)

 

箱排序(Bin Sort)

 

桶排序 (Bucket sort)或所謂的箱排序,是一個排序算法,工做的原理是將陣列分到有限數量的桶子裏。每一個桶子再個別排序(有可能再使用別的排序算法或是以遞迴方式繼續使用桶排序進行排序)。桶排序是鴿巢排序的一種概括結果。當要被排序的陣列內的數值是均勻分配的時候,桶排序使用線性時間(Θ(n))。但桶排序並非比較排序,不受到 O(n log n) 下限的影響。

 

一、箱排序的基本思想

     箱排序也稱桶排序(Bucket Sort),其基本思想是:設置若干個箱子,依次掃描待排序的記錄R[0],R[1],…,R[n-1],把關鍵字等於k的記錄全都裝入到第k個箱子裏(分配),而後按序號依次將各非空的箱子首尾鏈接起來(收集)。

【例】要將一副混洗的52張撲克牌按點數A<2<…<J<Q<K排序,需設置13個"箱子",排序時依次將每張牌按點數放入相應的箱子裏,而後依次將這些箱子首尾相接,就獲得了按點數遞增序排列的一副牌。

 

二、箱排序中,箱子的個數取決於關鍵字的取值範圍。

     若R[0..n-1]中關鍵字的取值範圍是0到m-1的整數,則必須設置m個箱子。所以箱排序要求關鍵字的類型是有限類型,不然可能要無限個箱子。

 

三、箱子的類型應設計成鏈表爲宜

     通常狀況下每一個箱子中存放多少個關鍵字相同的記錄是沒法預料的,故箱子的類型應設計成鏈表爲宜。

 

四、爲保證排序是穩定的,分配過程當中裝箱及收集過程當中的鏈接必須按先進先出原則進行。

(1) 實現方法一

     每一個箱子設爲一個鏈隊列。當一記錄裝入某箱子時,應作人隊操做將其插入該箱子尾部;而收集過程則是對箱子作出隊操做,依次將出隊的記錄放到輸出序列中。

 

(2) 實現方法二

     若輸入的待排序記錄是以鏈表形式給出時,出隊操做可簡化爲是將整個箱子鏈表連接到輸出鏈表的尾部。這隻須要修改輸出鏈表的尾結點中的指針域,令其指向箱子鏈表的頭,而後修改輸出鏈表的尾指針,令其指向箱子鏈表的尾便可。

 

桶排序算法實現舉例

 

Cpp代碼   收藏代碼
  1. #include <iostream>  
  2.  #include <list>  
  3.    
  4.  using namespace std;  
  5.    
  6.  struct Node  
  7.  {  
  8.      double value;  
  9.      Node *next;  
  10.  };  
  11.  //桶排序主程序  
  12.  void bucketSort(double* arr, int length)  
  13.  {  
  14.      Node key[10];  
  15.      int number = 0;  
  16.      Node *p, *q;//插入節點臨時變量  
  17.      int counter = 0;  
  18.      for(int i = 0; i < 10; i++)  
  19.      {  
  20.          key[i].value = 0;  
  21.          key[i].next = NULL;  
  22.      }  
  23.    
  24.      for(int i = 0; i < length; i++)  
  25.      {  
  26.          Node *insert = new Node();  
  27.          insert->value = arr[i];  
  28.          insert->next = NULL;  
  29.          number = arr[i] * 10;  
  30.          if(key[number].next == NULL)  
  31.          {  
  32.              key[number].next = insert;  
  33.          }  
  34.          else  
  35.          {  
  36.              p = &key[number];  
  37.              q = key[number].next;  
  38.              while((q != NULL) && (q->value <= arr[i]))  
  39.              {  
  40.                  q = q->next;  
  41.                  p = p->next;  
  42.              }  
  43.              insert->next = q;  
  44.              p->next = insert;  
  45.          }  
  46.      }  
  47.      for(int i = 0; i < 10; i++)  
  48.      {  
  49.          p = key[i].next;  
  50.          if(p == NULL)  
  51.              continue;  
  52.          while(p != NULL)  
  53.          {  
  54.              arr[counter++] = p->value;  
  55.              p = p->next;  
  56.          }  
  57.      }  
  58.  }  
  59.    
  60.  int main()  
  61.  {  
  62.      double a[] = {0.78, 0.17, 0.39, 0.26, 0.72, 0.94, 0.21, 0.12, 0.23, 0.68};  
  63.      bucketSort(a, 10);  
  64.      for(int i = 0; i < 10; i++)  
  65.      {  
  66.          cout << a[i] << " ";  
  67.      }  
  68.      cout << endl;  
  69.      return 0;  
  70.  }  

 

 

五、算法簡析

     分配過程的時間是O(n);收集過程的時間爲O(m) (採用鏈表來存儲輸入的待排序記錄)或O(m+n)。所以,箱排序的時間爲O(m+n)。若箱子個數m的數量級爲O(n),則箱排序的時間是線性的,即O(n),但最壞狀況仍有多是 O(n ^ 2)。

桶排序只適用於關鍵字取值範圍較小的狀況,不然所需箱子的數目 m 太多致使浪費存儲空間和計算時間。

 

桶排序可以擴展爲對整數元組序列進行排序,此時按照字典序排序。在面試的海量數據處理題目中,桶排序也頗有做用。如對天天數以億計的數據進行排序,直接排序即便採用nlgn的算法,依然是一件很恐怖的事情,內存也沒法容納如此多的數據。這時桶排序就能夠有效地下降數據的數量級,再對下降了數量級的數據進行排序,能夠獲得比較良好的效果。

 

 

 

§3 基數排序(Radix Sort)

 

基數排序(Radix Sort)

基數排序(Radix Sort)是對桶排序的改進和推廣。惟一的區別是基數排序強調多關鍵字,而桶排序沒有這個概念,換句話說基數排序對每一種關鍵字都進行桶排序,而桶排序同一個桶內排序能夠任意或直接排好序。

 

一、單關鍵字和多關鍵字

     文件中任一記錄R[i]的關鍵字均由d個份量

                       構成。

若這d個份量中每一個份量都是一個獨立的關鍵字,則文件是多關鍵字的(如撲克牌有兩個關鍵字:點數和花色);不然文件是單關鍵字的,

                 (0≤j<d)只不過是關鍵字中其中的一位(如字符串、十進制整數等)。

    多關鍵字中的每一個關鍵字的取值範圍通常不一樣。如撲克牌的花色取值只有4種,而點數則有13種。單關鍵字中的每位通常取值範圍相同。

 

二、基數

      設單關鍵字的每一個份量的取值範圍均是:

      C0≤kj≤Crd-1(0≤j<d)

可能的取值個數rd稱爲基數。

     基數的選擇和關鍵字的分解因關鍵宇的類型而異:

(1) 若關鍵字是十進制整數,則按個、十等位進行分解,基數rd=10,C0=0,C9=9,d爲最長整數的位數;

(2) 若關鍵字是小寫的英文字符串,則rd=26,Co='a',C25='z',d爲字符串的最大長度。

 

三、基數排序的基本思想

     基數排序的基本思想是:從低位到高位依次對Kj(j=d-1,d-2,…,0)進行箱排序。在d趟箱排序中,所需的箱子數就是基數rd,這就是"基數排序"名稱的由來。

 

基數排序的時間複雜度是 O(k·n),其中n是排序元素個數,k是數字位數。注意這不是說這個時間複雜度必定優於O(n·log(n)),由於k的大小通常會受到 n 的影響。基數排序所需的輔助存儲空間爲O(n+rd)。 

基數排序的方式能夠採用LSD(Least significant digital)或MSD(Most significant digital),LSD的排序方式由鍵值的最右邊開始,而MSD則相反,由鍵值的最左邊開始。

 

基數排序算法實現舉例

 

C代碼   收藏代碼
  1. #include <stdio.h>   
  2. #include <stdlib.h>   
  3.   
  4. void radixSort(int[]);  
  5.   
  6. int main(void) {   
  7.     int data[10] = {73, 22, 93, 43, 55, 14, 28, 65, 39, 81};   
  8.         
  9.     printf("\n排序前: ");   
  10.     int i;  
  11.     for(i = 0; i < 10; i++)   
  12.         printf("%d ", data[i]);   
  13.   
  14.     putchar('\n');   
  15.   
  16.     radixSort(data);  
  17.       
  18.     printf("\n排序後: ");   
  19.     for(i = 0; i < 10; i++)   
  20.         printf("%d ", data[i]);   
  21.   
  22.     return 0;   
  23. }   
  24.   
  25. void radixSort(int data[]) {  
  26.     int temp[10][10] = {0};   
  27.     int order[10] = {0};   
  28.       
  29.     int n = 1;   
  30.     while(n <= 10) {   
  31.           
  32.         int i;  
  33.         for(i = 0; i < 10; i++) {   
  34.             int lsd = ((data[i] / n) % 10);   
  35.             temp[lsd][order[lsd]] = data[i];   
  36.             order[lsd]++;   
  37.         }   
  38.           
  39.         // 從新排列  
  40.         int k = 0;  
  41.         for(i = 0; i < 10; i++) {   
  42.             if(order[i] != 0)  {  
  43.                 int j;  
  44.                 for(j = 0; j < order[i]; j++, k++) {   
  45.                     data[k] = temp[i][j];   
  46.                 }   
  47.             }  
  48.             order[i] = 0;   
  49.         }   
  50.   
  51.         n *= 10;   
  52.     }       
  53. }  

基數排序應用到字符串處理的倍增算法裏面,這個倍增算法,要反覆的進行排序。若是排序能快一點,這個程序就能快不少。 

 

 

 

 

§4 計數排序(Counting Sort)

 

計數排序(Counting sort)

計數排序(Counting sort)是一種穩定的排序算法,和基數排序同樣都是桶排序的變體。計數排序使用一個額外的數組C,其中第i個元素是待排序數組A中值小於等於i的元素的個數。而後根據數組C來將A中的元素排到正確的位置。

 

 

計數排序的原理

設被排序的數組爲A,排序後存儲到B,C爲臨時數組。所謂計數,首先是經過一個數組C[i]計算大小等於i的元素個數,此過程只須要一次循環遍歷就能夠;在此基礎上,計算小於或者等於i的元素個數,也是一重循環就完成。下一步是關鍵:逆序循環,從length[A]到1,將A[i]放到B中第C[A[i]]個位置上。原理是:C[A[i]]表示小於等於a[i]的元素個數,正好是A[i]排序後應該在的位置。並且從length[A]到1逆序循環,能夠保證相同元素間的相對順序不變,這也是計數排序穩定性的體現。在數組A有附件屬性的時候,穩定性是很是重要的。

 

計數排序的前說起適用範圍

A中的元素不能大於k,並且元素要做爲數組的下標,因此元素應該爲非負整數。並且若是A中有很大的元素,不可以分配足夠大的空間。因此計數排序有很大侷限性,其主要適用於元素個數多,可是廣泛不太大並且總小於k的狀況,這種狀況下使用計數排序能夠得到很高的效率。因爲用來計數的數組C的長度取決於待排序數組中數據的範圍(等於待排序數組的最大值與最小值的差加上1),這使得計數排序對於數據範圍很大的數組,須要大量時間和內存。例如:計數排序是用來排序0到100之間的數字的最好的算法,可是它不適合按字母順序排序人名。可是,計數排序能夠用在基數排序中的算法來排序數據範圍很大的數組。

 

當輸入的元素是 n 個 0 到 k 之間的整數時,它的運行時間是 Θ(n + k)。計數排序不是比較排序,排序的速度快於任何比較排序算法。

 

 

計數排序算法的步驟:

1.找出待排序的數組中最大和最小的元素

2.統計數組中每一個值爲i的元素出現的次數,存入數組C的第i項

3.對全部的計數累加(從C中的第一個元素開始,每一項和前一項相加)

4.反向填充目標數組:將每一個元素i放在新數組的第C(i)項,每放一個元素就將C(i)減去1

 

 

 

 

計數排序算法實現舉例

C代碼   收藏代碼
  1. #include <stdio.h>  
  2. #include <conio.h>  
  3. #define MAX 1000  
  4.   
  5. //函數原型  
  6. void counting_sort(int A[],int length_A,int B[],int k);  
  7.   
  8. //測試代碼  
  9. int main()  
  10. {  
  11.     int A[]={-1,2,6,5,4,8,9,7,1,10,3};//1到10,十個測試數據  
  12.     int B[11]={0};  
  13.     int k=10;//全部測試數據都處於0到k之間  
  14.     counting_sort(A,10,B,k);  
  15.     for(int i=1;i<11;i++)  
  16.         printf("%d ",B[i]);  
  17.     getch();  
  18. }  
  19.   
  20. //計數排序  
  21. void counting_sort(int A[],int length_A,int B[],int k)  
  22. {  
  23.     int C[MAX]={0};//C是臨時數組  
  24.     for(int i=1;i<=length_A;i++)  
  25.         C[A[i]]++;  
  26.     //此時C[i]包含等於i的元素個數  
  27.     for(int i=1;i<=k;i++)  
  28.         C[i]=C[i]+C[i-1];  
  29.     //此時C[i]包含小於或者等於i的元素個數  
  30.     for(int i=length_A;i>=1;i--)//從length_A到1逆序遍歷是爲了保證相同元素排序後的相對順序不改變  
  31.     {                           //若是從1到length_A,則相同元素的相對順序會逆序,但結果也是正確的  
  32.         B[C[A[i]]]=A[i];  
  33.         C[A[i]]--;  
  34.     }  
  35. }  

可使用鏈表節省輔助數組C的空間,只存儲出現的出現元素狀況。

 

 

 

 

 

§5 Proxmap Sort

 

Proxmap Sort

Proxmap Sort是桶排序和基數排序的改進。ProxMap的排序採用不一樣的方法來排序,這在概念上是相似哈希。該算法使用桶技術對哈希方法進行改變,桶的大小不相同。

A demonstration of ProxMapSort, a bucket sort variant that uses intermediate parallel arrays to efficiently index and size its sublists.

Technique:

  1. Create 4 arrays and initialize
    1. int HitList[ARRAYSIZE] -- Keeps a count of the number of hits at each index in the sorted array. HitList[x] holds a count of the number of items whose keys hashed to x. Initialize to all 0.
    2. int Location[ARRAYSIZE] -- Indices in the sorted array calculated using the hash function. Item x in the unsorted array has its hash index stored in Location[x]. Does not need to be initialized.
    3. int ProxMap[ARRAYSIZE] -- Starting index in the sorted array for each bucket. If HitList[x] is not 0 then ProxMap[x] contains the starting index for the bucket of keys hashing to x. Initialize to all keys to -1 (unused).
    4. StructType DataArray2[ARRAYSIZE] -- Array to hold the sorted array. Initialize to all -1 (unused).
  2. Use the keys of the unsorted array and a carefully chosen hash function to generate the indices into the sorted array and save these. The hash function must compute indices always in ascending order. Store each hash index in the Location[] array. Location[i] will hold the calculated hash index for the ith structure in the unsorted array. 
    HIdx = Hash(DataArray[i]); 
    Location[i] = HIdx; 

    Care must be taken in selecting the hash function so that the keys are mapped to the entire range of indexes in the array. A good approach is to convert the keys to integer values if they are strings, then map all keys to floats in the range 0<= Key < 1. Finally, map these floats to the array indices using the following formulas:
        /* Map all integer keys to floats in range 0<= Key < 1 */
        KeyFloat = KeyInt / (1 + MAXKEYINTVALUE);
    
        /* Map all float keys to indices in range 0<= Index < ARRAYSIZE */
        Index = floor(ARRAYSIZE * KeyFloat);
    

    This will then produce indices insuring that all the keys are kept in ascending order (hashs computed using a mod operator will not.)
  3. Keep a count of the number of hits at each hash index. HitList[Hidx]++
  4. Create the ProxMap (short for proximity map) from the hit list giving the starting index in the sorted array for each bucket.
        RunningTotal = 0;        /* Init counter */
        for(i=0; i 0)    /* There were hits at this address */
                {
                ProxMap[i] = RunningTotal;    /* Set start index for this set */
                RunningTotal += HitList[i];
                }
            }
    
  5. Move keys from the unsorted array to the sorted array using an insertion sort technique for each bucket. 
    In this diagram 5 sets of structures are sorted when delta = 5


Analysis: ProxMap sorting runs in a surprisingly fast O(n) time. 

 

 

C代碼   收藏代碼
  1. /******************************************************/  
  2. /* ProxmapSort.c                                      */  
  3. /*                                                    */  
  4. /* Proxmap sort demonstration.                        */  
  5. /* Author: Rick Coleman                               */  
  6. /* Date: April 1998                                   */  
  7. /******************************************************/  
  8. #include <stdio.h>  
  9. #include <conio.h>  
  10. #include "sort.h"  
  11. #include <math.h>  
  12.   
  13. #define ARRAYSIZE    32  
  14.   
  15. /* Prototype sort function */  
  16. void ProxmapSort(StructType DataArray[], StructType DataArray2[],int count);  
  17. int Hash(int key, int KeyMax, int KeyMin, int count);  
  18. void ProxMapInsertionSort(StructType DataArray[], StructType *theStruct,   
  19.                           int startIdx, int listLen);  
  20.   
  21. int main(void)  
  22. {  
  23.     StructType  DataArray[32], DataArray2[32];  
  24.     int         count;  
  25.   
  26.     count = ReadRecords(DataArray, 32);  
  27.     printf("Unsorted list of records.\n\n");  
  28.     PrintList(DataArray, count);  
  29.   
  30.     ProxmapSort(DataArray, DataArray2, count);  
  31.   
  32.     printf("Sorted list of records.\n\n");  
  33.     PrintList(DataArray2, count);  
  34.     printf("Sorting done...\n");  
  35.     getch();  
  36.     return(0);  
  37. }  
  38.   
  39.   
  40. /***************************************/  
  41. /* ProxmapSort()                       */  
  42. /*                                     */  
  43. /* Sort records on integer key using   */  
  44. /*  a proxmap sort.                    */  
  45. /***************************************/  
  46. void ProxmapSort(StructType DataArray[], StructType DataArray2[],int count)  
  47. {  
  48.     int i;  
  49.     int HitList[ARRAYSIZE];  
  50.     int Hidx;                  /* Hashed index */  
  51.     int ProxMap[ARRAYSIZE];  
  52.     int RunningTotal;          /* Number of hits */  
  53.     int Location[ARRAYSIZE];  
  54.     int KeyMax, KeyMin;        /* Used in Hash() */  
  55.   
  56.     /* Initialize hit list and proxmap */  
  57.     for(i=0; i<count; i++)  
  58.     {  
  59.         HitList[i] = 0;           /* Init to all 0 hits */  
  60.         ProxMap[i] = -1;          /* Init to all unused */  
  61.         DataArray2[i].key = -1;   /* Init to all empty */  
  62.     }  
  63.   
  64.     /* Find the largest key for use in computing the hash */  
  65.     KeyMax = 0;        /* Guaranteed to be less than the smallest key */  
  66.     KeyMin = 32767;    /* Guaranteed to be more than the largest key */  
  67.     for(i=0; i<count; i++)  
  68.     {  
  69.         if(DataArray[i].key > KeyMax) KeyMax = DataArray[i].key;  
  70.         if(DataArray[i].key < KeyMin) KeyMin = DataArray[i].key;  
  71.     }  
  72.   
  73.     /* Compute the hit count list (note this is not a collision count, but 
  74.         a collision count+1 */  
  75.     for(i=0; i<count; i++)  
  76.     {  
  77.         Hidx = Hash(DataArray[i].key, KeyMax, KeyMin, count);    /* Calculate hash index */  
  78.         Location[i] = Hidx;                                      /* Save this for later. (Step 1) */  
  79.         HitList[Hidx]++;                                         /* Update the hit count (Step 2) */  
  80.     }  
  81.   
  82.     /* Create the proxmap from the hit list. (Step 3) */  
  83.     RunningTotal = 0;        /* Init counter */  
  84.     for(i=0; i<count; i++)  
  85.     {  
  86.         if(HitList[i] > 0)    /* There were hits at this address */  
  87.         {  
  88.             ProxMap[i] = RunningTotal;    /* Set start index for this set */  
  89.             RunningTotal += HitList[i];  
  90.         }  
  91.     }  
  92.   
  93.     // NOTE: UNCOMMENT THE FOLLOWING SECTION TO SEE WHAT IS IN THE ARRAYS, BUT  
  94.     //       COMMENT IT OUT WHEN DOING A TEST RUN AS PRINTING IS VERY SLOW AND  
  95.     //       WILL RESULT IN AN INACCURATE TIME FOR PROXMAP SORT.  
  96. /* ---------------------------------------------------- 
  97.     // Print HitList[] to see what it looks like 
  98.     printf("HitList:\n"); 
  99.     for(i=0; i<count; i++) 
  100.         printf("%d ", HitList[i]); 
  101.     printf("\n\n"); 
  102.     getch(); 
  103.  
  104.     // Print ProxMap[] to see what it looks like 
  105.     printf("ProxMap:\n"); 
  106.     for(i=0; i<count; i++) 
  107.         printf("%d ", ProxMap[i]); 
  108.     printf("\n\n"); 
  109.     getch(); 
  110.  
  111.     // Print Location[] to see what it looks like 
  112.     printf("Location:\n"); 
  113.     for(i=0; i<count; i++) 
  114.         printf("%d ", Location[i]); 
  115.     printf("\n\n"); 
  116.     getch(); 
  117.     ---------------------------------------------  */  
  118.   
  119.     /* Move the keys from A1 to A2 */  
  120.     /* Assumes A2 has been initialized to all empty slots (key = -1)*/  
  121.     for(i=0; i<count; i++)  
  122.     {  
  123.         if((DataArray2[ProxMap[Location[i]]].key == -1))  /* If the location in A2 is empty...*/  
  124.         {  
  125.             /* Move the structure into the sorted array */  
  126.             DataArray2[ProxMap[Location[i]]] = DataArray[i];  
  127.         }  
  128.         else    /* Insert the structure using an insertion sort */  
  129.         {  
  130.             ProxMapInsertionSort(DataArray2, &DataArray[i], ProxMap[Location[i]], HitList[Location[i]]);  
  131.         }  
  132.     }  
  133.   
  134. }  
  135.   
  136. /***************************************/  
  137. /* Hash()                               */  
  138. /*                                     */  
  139. /* Calculate a hash index.             */  
  140. /***************************************/  
  141. int Hash(int key, int KeyMax, int KeyMin, int count)  
  142. {  
  143.     float    keyFloat;  
  144.   
  145.     /* Map integer key to float in the range 0 <= key < 1 */  
  146.     keyFloat = (float)(key - KeyMin) / (float)(1 + KeyMax - KeyMin);  
  147.   
  148.     /* Map float key to indices in range 0 <= index < count */  
  149.     return((int)floor(count * keyFloat));  
  150. }  
  151.   
  152. /***************************************/  
  153. /* ProxMapInsertionSort()              */  
  154. /*                                     */  
  155. /* Use insertion sort to insert a      */  
  156. /*   struct into a subarray.           */  
  157. /***************************************/  
  158. void ProxMapInsertionSort(StructType DataArray[], StructType *theStruct,   
  159.                           int startIdx, int listLen)  
  160. {  
  161.     /* Args:    DataArray - Partly sorted array 
  162.                 *theStruct - Structure to insert 
  163.                 startIdx - Index of start of subarray 
  164.                 listLen - Number of items in the subarray */  
  165.     int i;  
  166.   
  167.     /* Find the end of the subarray */  
  168.     i = startIdx + listLen - 1;  
  169.     while(DataArray[i-1].key == -1) i--;  
  170.       
  171.     /* Find the location to insert the key */   
  172.     while((DataArray[i-1].key > theStruct->key) && (i > startIdx))  
  173.     {  
  174.         DataArray[i] = DataArray[i-1];  
  175.         i--;  
  176.     }  
  177.   
  178.     /* Insert the key */  
  179.     DataArray[i] = *theStruct;  
  180. }  

 

 

 

§6 珠排序(Bead Sort)

 

珠排序(Bead Sort)

珠排序是一種天然排序算法,由Joshua J. Arulanandham, Cristian S. Calude 和 Michael J. Dinneen 在2002年發展而來,而且在歐洲理論計算機協會(European Association for Theoretical Computer Science,簡稱EATCS)的新聞簡報上發表了該算法。不管是電子仍是實物(digital and analog hardware)上的實現,珠排序都能在O(n)時間內完成;然而,該算法在電子上的實現明顯比實物要慢不少,而且只能用於對正整數序列進行排序。而且,即便在最好的狀況,該算法也須要O(n^2) 的空間。

下面僅從實例來理解這個算法

 

先了解一個概念,一個數字3用3個1來表示,一個數字9用9個1來表示,珠排序中的珠指的是每個1,它把每個1想像成一個珠子,這些珠子被串在一塊兒,想像下算盤和糖葫蘆:

Image(5)

 

 

圖1

上圖1中的三個珠就表示數字3,兩個珠表示數字2。

Image(7)

                                                                                             圖2

圖2(a)中有兩個數字,4和3,分別串在四條線上,因而數字4的最後一個珠子下落,由於它下邊是空的,自由下落後變成圖2(b),圖2(c)中隨機給了四個數字,分別是3,2,4,2,這些珠子自由下落,就變成了(d)中,落完就有序了,2,2,3,4,以上就是珠排序的精華。

 

珠排序算法的圖很像以前介紹過的跳躍表(Skip List)的結構。

 

 

§7 小結

這篇博文列舉了選擇排序的6個算法,基本能夠掌握其中概要,管中窺豹,不求甚解。若是你有任何建議或者批評和補充,請留言指出,不勝感激,更多參考請移步互聯網。

 

 

 

 

參考:

awsqsh http://blog.csdn.net/awsqsh/article/details/6133562

②數據結構自考網: http://student.zjzk.cn/course_ware/data_structure/web/paixu/paixu8.6.1.1.htm

juvenfanhttp://www.cnblogs.com/juventus/archive/2012/06/06/2538834.html

Gossip@caterpillar http://caterpillar.onlyfun.net/Gossip/AlgorithmGossip/RadixSort.htm

⑤數據結構自考網: http://student.zjzk.cn/course_ware/data_structure/web/paixu/paixu8.6.2.htm

NeilHappy http://blog.csdn.net/neilhappy/article/details/7202507

kkun http://www.cnblogs.com/kkun/archive/2011/11/23/2260301.html

⑧Promap Sort: http://www.cs.uah.edu/~rcoleman/CS221/Sorting/ProxMapSort.html

相關文章
相關標籤/搜索