带有枢轴的QuickSort中间元素并不总是成功

时间:2015-04-02 23:25:27

标签: c quicksort

我尝试在c中快速排序,使用数组的中间元素旋转。
但我的计划并不总是出现正确的结果 这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

#define SIZE 10  /*max size of array*/

void QuickSort(int [], int, int);
int Partition(int [], int, int);    
void Swap(int *,int *);             

int main()
{
    srand(time(NULL));
    clock_t begin,end;
    double time_spend;
    begin = clock();
    int A[SIZE];
    int i;

    for(i = 0; i < SIZE; i++)  /*full array with numbers 1...100*/
    A[i] = rand() % (100 - 1 + 1) + 1;  

    printf("[");
    for(i = 0; i < SIZE; i++) /*print original array*/
        printf("%d,",A[i]);
    printf("\b]\n");

    QuickSort(A,0,SIZE - 1);  /*start sorting array*/
    printf("\n------After Quick Sorting-----\n");
    printf("\n[");
    for(i = 0; i < SIZE; i++)  /*print sorted array*/
        printf("%d,",A[i]);
    printf("\b]\n");
    end = clock();
    time_spend = (double)(end - begin) / CLOCKS_PER_SEC;
    printf("Elapsed: %f second\n",time_spend);
    return 0;
}
/*recursive function sorting array*/
void QuickSort(int A[], int start, int end)
{
   int i,q;
   if(start < end)
   {
      q = Partition(A,start,end); /*partition array*/
      QuickSort(A,start,q - 1);   /*recursive first half of array*/
      QuickSort(A,q + 1,end);     /*recursive second half of array*/
   }

}
/*function partition with pivot the middle element*/
int Partition(int A[],int start,int end)
{
   int x,i,j;
   x = A[(end + start) / 2];     
   j = start;
   i = end;

   while(j < i)
   {
      while(A[j] < x)
         j++;
      while(A[i] > x)
         i--;
      if(j < i)
      {
          Swap(&A[j],&A[i]);
          j++;
          i--;
      }
  }
  return i;

}
/*function exchange elements*/
void Swap(int* a,int* b)
{
   int temp;
   temp = *a;
   *a = *b;
   *b = temp;
}

我试图改变epuals的功能分区,但我无法解决问题。

1 个答案:

答案 0 :(得分:0)

在您的分区功能中,您需要考虑a[j]==xa[i]==x的情况。在这种情况下,您无法正常交换它们并继续进行。在纸上完成它,你会看到错误。发生这种情况的一个例子 - 考虑数组:1 3 4 5 2