找回密码
 立即注册→加入我们

QQ登录

只需一步,快速开始

搜索
热搜: 下载 VB C 实现 编写
查看: 3402|回复: 2

【算法】十大排序算法

[复制链接]
发表于 2015-1-15 20:27:01 | 显示全部楼层 |阅读模式

欢迎访问技术宅的结界,请注册或者登录吧。

您需要 登录 才可以下载或查看,没有账号?立即注册→加入我们

×
自己根据算法思想,自己编程实现十大排序算法,当然其中也有借鉴别人的地方,所有的程序都是自己经过检验测试没有问题才放出来的。
一 算法介绍
1 选择排序
选择排序的思想就是:从当前数中选出一个最大或者最小的值排在最前面,然后从剩下的数中选出剩下数的最值排在已经排序的数的后面,算法时间复杂度O(n2),在实际工作中这种排序算法不可取。
2 冒泡排序
冒泡排序的思想就是:比如说要升序排列,那么就依次相邻两个数比较大小,然后把大的数放在后面,依次类推。冒泡排序时间复杂度O(n2),在实际工作中这种排序算法不可取。
3 插入排序
插入排序思想就是:依次遍历数组,假设前面已经有一部分排过序的,当前待排数字跟前面的数字依次比较大小,将其插在对应顺序位置,算法时间复杂度O(n2),在实际工作中这种排序算法不可取。
4 希尔排序
希尔排序的思想就是:希尔排序是对插入排序的改进,可以把当前数据分组,每个分组都有一定间隔,比如说原来数组的小标范围是0,1,2,3,4,5,6,7,8,9.我们把它们分成两组,0-4一组,5-9一组,这样的话,间隔就是5,我们令0,5,;1,6;2,7;3,8;4,9,它们两两比较大小。然后再减小间隔范围,或者说增多分组个数,比如此时,间隔为2,那么比较下标为0,2,4,6,8的大小,然后比较下标为1,3,5,7,9的大小。到最后间隔变为1,就变成了完全的插入排序了。
希尔排序的算法时间复杂度O(n2)。
5 快速排序
快速排序利用分治的思想,在数组中设置一个游标,从数组的两端来遍历数组,将元素和游标相比,意图达到两组数据一边游标小,一边比游标大。那么此时的游标就处于两组数组的中间。然后依次对前后两组数据排序,此时当然可以利用递归了。时间平均复杂度是O(n*logn),排序算法貌似是公认最实用最好的排序算法,在大多数情况下都能解决问题,提高效率,当然也有糟糕的时候,此时的算法时间复杂度达到O(n2)。
6 归并排序
归并排序的思想就是把数组分成两组,前后两组分别排序,两组排完序后再把两组合并起来,当然可以利用递归的思想来实现归并排序,算法时间复杂度是O(n*logn)。
7 堆排序
首先说明什么是堆,堆其实就一个二叉树,其中要满足父节点大于或者小于子节点。把数组中元素按照堆来遍历,修正堆后,那么最大或者最小的元素就在根节点上了。我们把根节点移除,按照相同的方法再次得到最值,依次类推,直到剩下一个元素位置。算法时间复杂度是O(n*logn)。
8 基数排序
基数排序和后面要说的计数排序,桶排序都是非比较排序,因此他们能够突破比较排序的时间上限O(n*logn),达到时间复杂度为)O(n)的程度,但是这几种排序都有限制性条件,不能看到他们的时间复杂付貌似比别的低一个等级就觉得他们是最好的排序算法了。三者的思想类似,都是用到了桶的概念。基数排序针对的是非负整数,将所有的数字依次比较个位,十位,百位,直到最高位,每一次比较都能得到一个排序,由于越往高位,这个位上数字影响权重越大,所以能够起到对前面顺序的修正。
9 计数排序
计数排序的思想也很简单,就是针对所有的整数。取一个从最小值到最大值的间隔,然后遍历数组,把当前元素放在下标为(当前元素值 - 最小值)的位置。是不是很简单啊,编程玩的就是思想,没有思想的程序员就不是真正的程序员。
10 桶排序
说到最后最后终于说到桶排序了。桶排序的思想就是先把数据分成一个个分组,这一个个分组就是一个个桶,当然这些桶是有顺序的,要不然桶排序作为非比较排序算法,连唯一的顺序都没有并且也不比较还排什么序啊。对于首次分桶后的数据可以采用递归或者其他的排序算法实现对每个桶内数据排序。最后按照桶号将所有数据依次连接就是拍完顺序的数据了。
二 算法实现
常言道光说不练假把式,这里肯定要把实现代码贴出来了。
1 选择排序
  1. void selectsort(int *pData,int left,int right)
  2. {
  3.         int i,j,temp;
  4.         int tb;
  5.         for(i=left;i<right-1;i++)
  6.         {
  7.                 temp = i;
  8.                 for(j=i+1;j<right;j++)
  9.                 {
  10.                         if(pData[j]<pData[temp])
  11.                         {
  12.                                 temp = j;
  13.                         }
  14.                 }
  15.                 if(i != temp )
  16.                 {
  17.                         tb = pData[temp];
  18.                         pData[temp] = pData[i];
  19.                         pData[i] = tb;
  20.                 }
  21.         }
  22. }
复制代码
2 冒泡排序
  1. void bubblesort(int *pData,int left,int right)
  2. {
  3.         int i,j;
  4.         int temp;
  5.         for(i=left;i<right-1;i++)
  6.         {
  7.                 for(j=left;j<right-i-1;j++)
  8.                 {
  9.                         if(pData[j+1]<pData[j])
  10.                         {
  11.                                 temp = pData[j+1];
  12.                                 pData[j+1] = pData[j];
  13.                                 pData[j] = temp;
  14.                         }
  15.                 }
  16.         }
  17. }
复制代码
3 插入排序
  1. void insertsort(int *pData,int left,int right)
  2. {
  3.         int i,j;
  4.         int temp;
  5.         for(i=left+1;i<right;i++)
  6.         {
  7.                 temp = pData[i];
  8.                 j = i;
  9.                 while(--j>=left && pData[j]>temp)
  10.                 {
  11.                         pData[j+1] = pData[j];
  12.                 }
  13.                 pData[j+1] =temp;
  14.         }
  15. }
复制代码
4 希尔排序
  1. void shellsort(int *pData,int left,int right)
  2. {
  3.         int i,j,gap;
  4.         int temp;
  5.         for(gap=right/2;gap>0;gap/=2)
  6.         {
  7.                 for(i=gap;i<right;i++)
  8.                 {
  9.                         temp = pData[i];
  10.                         for(j=i-gap;(j>=0)&&pData[j]>temp;j-=gap)
  11.                         {
  12.                                 pData[j+gap] = pData[j];
  13.                         }
  14.                         pData[j+gap] = temp;
  15.                 }
  16.         }
  17. }
复制代码
5 快速排序三种实现方式
(1)游标为最左边元素
  1. void quicksort(int *pData,int left,int right)
  2. {
  3.         int i,j,middle,temp;
  4.         middle = pData[left];
  5.         i = left + 1;
  6.         j = right - 1;
  7.         do
  8.         {
  9.                 while( i<right && pData[i]<middle)
  10.                         i++;
  11.                 while( j>left && pData[j]>middle)
  12.                         j--;
  13.                 if(i >= j)
  14.                         break;
  15.                 temp = pData[i];
  16.                 pData[i] = pData[j];
  17.                 pData[j] = temp;
  18.                 i++;
  19.                 j--;
  20.         }while(i<=j);
  21.         pData[left] = pData[j];
  22.         pData[j] = middle;
  23.         if(left<j-1)
  24.                 quicksort(pData,left,j);
  25.         if(right>j+1)
  26.                 quicksort(pData,j+1,right);
  27. }
复制代码
(2)游标为中间元素
  1. void quicksort2(int *pData,int left,int right)
  2. {
  3.         int i,j,middle,temp;
  4.         i = left;
  5.         j = right - 1;
  6.         middle = pData[(i + j)/2];
  7.         do
  8.         {
  9.                 while(i<right && pData[i]<middle)
  10.                         i++;
  11.                 while(j>left && pData[j]>middle)
  12.                         j--;
  13.                 if(i>=j)
  14.                         break;
  15.                 temp = pData[i];
  16.                 pData[i] = pData[j];
  17.                 pData[j] = temp;
  18.                 i++;
  19.                 j--;
  20.         }while(i<j);
  21.         if(left<i-1)
  22.                 quicksort2(pData,left,i);
  23.         if(right>i+2)
  24.                 quicksort2(pData,i,right);
  25. }
复制代码
(3)游标为最后元素
  1. void quicksort3(int *pData,int left,int right)
  2. {
  3.         int i,j,last;
  4.         int temp,end;
  5.         i = left;
  6.         j = left;
  7.         last = right - 1;
  8.         end = pData[last];

  9.         //分配初始的i,j
  10.         if(pData[left]<end)
  11.         {
  12.                 while( pData[++j]<end );
  13.                 if(j == last)
  14.                 {
  15.                         quicksort3(pData,left,right-1);
  16.                         return;
  17.                 }
  18.                 else
  19.                 {
  20.                         i = j-1;
  21.                 }
  22.         }
  23.         else
  24.         {
  25.                 while( pData[++j]>end );
  26.                 temp = pData[j];
  27.                 pData[j] = pData[left];
  28.                 pData[left] = temp;
  29.                 if(j == last)
  30.                 {
  31.                         quicksort3(pData,left+1,right);
  32.                         return;
  33.                 }
  34.         }
  35.         //分治排序
  36.         while(j<last-1)
  37.         {
  38.                 j++;
  39.                 if(pData[j]<end)
  40.                 {
  41.                         temp = pData[j];
  42.                         pData[j] = pData[++i];
  43.                         pData[i] = temp;
  44.                 }
  45.         }
  46.         temp = end;
  47.         pData[last] = pData[i+1];
  48.         pData[i+1] = temp;
  49.         if(left<i)
  50.                 quicksort3(pData,left,i+1);
  51.         if(right>i+3)
  52.                 quicksort3(pData,i+2,right);
  53. }
复制代码
6 归并排序
(1)递归法实现
  1. void mergesort2(int *pData,int *Des,int left,int right)
  2. {
  3.         int first = left;
  4.         int last  = right-1;
  5.         if(first<last)
  6.         {
  7.                 int mid = (first + last)/2;
  8.                 mergesort2(pData,Des,first,mid+1);
  9.                 mergesort2(pData,Des,mid+1,right);
  10.                 merges(pData,Des,first,mid,last);
  11.         }
  12. }
  13. void merges(int *pData,int *Des,int first,int mid,int last)
  14. {
  15.         int i = first;
  16.         int j = mid + 1;
  17.         int k = first;
  18.         while(i<=mid&&j<=last)
  19.         {
  20.                 if(pData[i]<pData[j])
  21.                         Des[k++] = pData[i++];
  22.                 else
  23.                         Des[k++] = pData[j++];
  24.         }
  25.         while(i<=mid)
  26.         {
  27.                 Des[k++] = pData[i++];
  28.         }
  29.         while(j<=last)
  30.         {
  31.                 Des[k++] = pData[j++];
  32.         }
  33.         for(k=first;k<=last;k++)
  34.                 pData[k] = Des[k];
  35. }
复制代码
(2)非递归法实现
  1. void mergesort3(int *list,int length)
  2. {
  3.         int i, left_min, left_max, right_min, right_max, next;
  4.     int *tmp = (int*)malloc(sizeof(int) * length);
  5.     if (tmp == NULL)
  6.         {
  7.         fputs("Error: out of memory\n", stderr);
  8.         abort();
  9.     }
  10.     for (i = 1; i < length; i *= 2)
  11.         {
  12.                 for (left_min = 0; left_min < length - i; left_min = right_max)
  13.                 {
  14.                         right_min = left_max = left_min + i;
  15.                         right_max = left_max + i;
  16.                         if (right_max > length)
  17.                                 right_max = length;
  18.                         next = 0;
  19.                         while (left_min < left_max && right_min < right_max)
  20.                                 tmp[next++] = list[left_min] > list[right_min] ? list[right_min++] : list[left_min++];
  21.                         while (left_min < left_max)
  22.                                 list[--right_min] = list[--left_max];
  23.                         while (next > 0)
  24.                                 list[--right_min] = tmp[--next];
  25.                 }
  26.         }
  27.         free(tmp);
  28. }
复制代码
7 堆排序
  1. void HeapAdjust(int array[], int i, int nLength)
  2. {
  3.         int nchild;
  4.         int ntemp;
  5.         while(i>=0)
  6.         {
  7.                 nchild = 2 * i + 1;
  8.                 ntemp = array[i];
  9.                 if (array[nchild]<ntemp)
  10.                 {
  11.                         ntemp = array[nchild];
  12.                         array[nchild] = array[i];
  13.                         array[i] = ntemp;
  14.                 }
  15.                 if (nchild < nLength - 1)
  16.                 {
  17.                         nchild++;
  18.                         if (array[nchild]<ntemp)
  19.                         {
  20.                                 ntemp = array[nchild];
  21.                                 array[nchild] = array[i];
  22.                                 array[i] = ntemp;
  23.                         }
  24.                 }
  25.                 i--;
  26.         }
  27. }

  28. // 堆排序算法
  29. void HeapSort(int array[],int length)
  30. {
  31.         int i,temp;
  32.         for (int nL = length; nL>0;nL--)
  33.         {
  34.                 i = nL/2 - 1;
  35.                 HeapAdjust(array,i,nL);
  36.                 temp = array[0];
  37.                 array[0] = array[nL-1];
  38.                 array[nL-1] = temp;
  39.         }
  40. }
复制代码
8 基数排序
  1. #include <iostream>
  2. using namespace std;
  3. const int base=10;
  4. struct wx
  5. {
  6.         int num;
  7.         wx *next;
  8.         wx()
  9.         {
  10.                 next=NULL;
  11.         }
  12. };
  13. wx *headn,*curn,*box[base],*curbox[base];

  14. void basesort(int t)
  15. {
  16.         int i,k=1,r,bn;
  17. // k,r 分别表示10的幂次方,用来得到相应位上的单个数字,比如 k=10,r=100,数字207,则 十位上 0 = //(207/r)%10
  18.         for(i=1;i<=t;i++)
  19.         {
  20.                 k*=base;
  21.         }
  22.         r=k*base;
  23. //curbox和box中的指针指向相同的位置,当curbox中有新元素时,curbox指向会发生变化,形成box元素为//头指针,curbox元素相当于滑动指针,这样可以通过比较两者的不同来判断指针的走向。
  24.         for(i=0;i<base;i++)
  25.         {
  26.                 curbox[i]=box[i];
  27.         }

  28.         for(curn=headn->next;curn!=NULL;curn=curn->next)
  29.         {
  30.                  bn=(curn->num%r)/k;               // bn表示元素相应位上的值,
  31.                 curbox[bn]->next=curn;             //curbox[i]的next指向相应位为i的元素
  32.                 curbox[bn]=curbox[bn]->next;    //此时curbox[i]向后移位,以box[i]为首的链表长度增加
  33.         }
  34.         curn=headn;
  35.         for(i=0;i<base;i++)
  36.         {
  37.                 if(curbox[i]!=box[i])
  38.                 {
  39.                         curn->next=box[i]->next;
  40.                         curn=curbox[i];        //curn此时指向了在box中具有相同值的链表的最后一个,例如 123,                                                                //33,783,67,56,在3开头的 元素链表中,此时cur指向了783。
  41.                 }
  42.         }
  43.         curn->next=NULL;
  44. }

  45. void printwx()
  46. {
  47.         for(curn=headn->next;curn!=NULL;curn=curn->next)
  48.         {
  49.                 cout<<curn->num<<' ';
  50.         }
  51.         cout<<endl;
  52. }

  53. int main()
  54. {
  55.         int i,n,z=0,maxn=0;
  56.         curn=headn=new wx;
  57.         cin>>n;
  58.         for(i=0;i<base;i++)
  59.         {
  60.                 curbox[i]=box[i]=new wx;
  61.         }
  62.         for(i=1;i<=n;i++)
  63.         {
  64.                 curn=curn->next=new wx;
  65.                 cin>>curn->num;
  66.                 maxn=max(maxn,curn->num);
  67.         }
  68.         while(maxn/base>0)
  69.         {
  70.                 maxn/=base;
  71.                 z++;
  72.         }
  73.         for(i=0;i<=z;i++)
  74.         {
  75.                 basesort(i);
  76.         }
  77.         printwx();
  78.         return 0;
  79. }
复制代码
9 计数排序
  1. void CountSort(int array[],int nLength)
  2. {
  3.         int nMin,nMax;
  4.         nMin = INT_MAX;
  5.         nMax = 0;
  6.         for(int i=0;i<nLength;i++)
  7.         {
  8.                 if (nMax<array[i])
  9.                         nMax = array[i];
  10.                 if (nMin>array[i])
  11.                         nMin = array[i];
  12.         }
  13.         int nSize = nMax - nMin + 1;
  14.         int *Count = NULL;
  15.         int *Sort  = NULL;
  16.         Count = (int *)malloc( sizeof(int) * nSize );
  17.         Sort  = (int *)malloc( sizeof(int) * nLength);
  18.         int j;
  19.         for (j=0;j<nSize;j++)
  20.         {
  21.                 Count[j]  = 0;
  22.         }
  23.         for (j=0;j<nLength;j++)
  24.         {
  25.                 Count[array[j] - nMin]++;
  26.         }
  27.         for (j=0;j<nSize-1;j++)
  28.         {
  29.                 Count[j+1] += Count[j];
  30.         }
  31.         for (j=nLength-1;j>=0;j--)
  32.         {
  33.                 Sort[Count[ array[j]-nMin] -1 ] = array[j];
  34.                 Count[array[j] - nMin]--;
  35.         }
  36.         for (j=0;j<nLength;j++)
  37.         {
  38.                 array[j] = Sort[j];
  39.         }
  40.         free(Count);
  41.         free(Sort);
  42. }
复制代码
10 桶排序
  1. //文件1
  2. #ifndef D_BUCKET_H
  3. #define D_BUCKET_H
  4. #include<cstdlib>
  5. #include<climits>
  6. using namespace std;
  7. void BucketSort(int array[],int nLength,int nDivide);
  8. struct bucket
  9. {
  10.         int key;
  11.         bucket *next;
  12. };
  13. #endif
  14. //文件2
  15. #include"bucket.h"

  16. void BucketSort(int arr[],int nLength,int nDivide)
  17. {
  18.         bucket **Box = (bucket**)malloc( sizeof(bucket*) * nDivide );
  19.         for(int i =0;i<nDivide;i++)
  20.         {
  21.                 Box[i] = (bucket*)malloc( sizeof(bucket) );
  22.                 Box[i]->key = 0;
  23.                 Box[i]->next = NULL;
  24.         }
  25.        
  26.         // Find the Max and Min in the array
  27.         int nMin = INT_MAX;
  28.         int nMax = INT_MIN;
  29.         int nPie,nLeft;
  30.         for(int i = 0;i<nLength;i++)
  31.         {
  32.                 nMin = (nMin<arr[i])?nMin:arr[i];
  33.                 nMax = (nMax>arr[i])?nMax:arr[i];
  34.         }
  35.         nLeft = (nMax - nMin + 1) % nDivide;
  36.         if(nLeft == 0)
  37.                 nPie = (nMax - nMin + 1) / nDivide;
  38.         else
  39.                 nPie = (nMax - nMin + 1) /(nDivide - 1);
  40.         //Insert the element in bucket
  41.         for(int i = 0;i<nLength;i++)
  42.         {
  43.                 bucket *node = (bucket*)malloc(sizeof(bucket));
  44.                 node->key = arr[i];
  45.                 node->next = NULL;
  46.                 int nId = (arr[i] - nMin) / nPie;
  47.                 if(Box[nId]->key == 0)
  48.                 {
  49.                         Box[nId]->next = node;
  50.                         Box[nId]->key++;
  51.                 }
  52.                 else
  53.                 {
  54.                         bucket *p = Box[nId]->next;
  55.                         bucket *cur = Box[nId];
  56.                         while(p!=NULL && p->key < arr[i])
  57.                         {
  58.                                 cur = p;
  59.                                 p  = p->next;
  60.                         }
  61.                         cur->next = node;
  62.                         node->next = p;
  63.                         Box[nId]->key++;
  64.                 }
  65.         }
  66.         // put the element in the  array and also free the memory
  67.         int j = 0;
  68.         for(int i = 0;i<nDivide;i++)
  69.         {
  70.                 bucket *pt = Box[i]->next;
  71.                 bucket *cur = Box[i];
  72.                 while(pt != NULL)
  73.                 {
  74.                         arr[j] = pt->key;
  75.                         j++;
  76.                         cur = pt;
  77.                         pt = pt->next;

  78.                         free(cur);
  79.                 }
  80.                 free(Box[i]);
  81.         }
  82.         free(Box);
  83.        
  84. }
  85. //文件3
  86. #define _CRTDBG_MAP_ALLOC
  87. #include <stdlib.h>
  88. #include <crtdbg.h>
  89. #ifdef _DEBUG
  90. #define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
  91. #define new DEBUG_NEW
  92. #endif
  93. #include"bucket.h"
  94. #include <iostream>
  95. #include <string>
  96. using namespace std;
  97. const int NUM = 7;
  98. const int DIV = 10;
  99. void main()
  100. {
  101.         int arr[NUM] = {69,78,99,12,34,56,45};
  102.         std::cout<<"Before sorting :\n";
  103.         for(int i=0;i<NUM;i++)
  104.         {
  105.                 std::cout<<arr[i]<<" ";
  106.         }
  107.         std::cout<<endl;

  108.         BucketSort(arr,NUM,DIV);
  109.         std::cout<<"After sorting :\n";
  110.         for(int i=0;i<NUM;i++)
  111.         {
  112.                 std::cout<<arr[i]<<" ";
  113.         }
  114.         //This is test whether has a memory leak
  115.         _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
  116. }
复制代码
回复

使用道具 举报

发表于 2015-1-15 20:46:47 | 显示全部楼层
好!{:soso_e102:}我也会出我的算法数据结构教程{:soso_e121:}
回复 赞! 靠!

使用道具 举报

发表于 2015-1-15 20:58:50 | 显示全部楼层
这个我已经写过啦http://www.0xaa55.com/forum.php? ... ;tid=739&extra=
回复 赞! 靠!

使用道具 举报

本版积分规则

QQ|Archiver|小黑屋|技术宅的结界 ( 滇ICP备16008837号 )|网站地图

GMT+8, 2024-11-22 16:15 , Processed in 0.042441 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表