#include<stdio.h> #include<stdlib.h> #define Cutoff 20 #define MaxSize 100 typedef int ElementType; void InsertionSort ( ElementType A[ ], int N ) { int j, P; ElementType Tmp; for ( P = 1; P < N; P++ ) { Tmp = A[ P ]; for ( j = P; j > 0 && A[ j - 1 ] > Tmp; j-- ) A[ j ] = A[ j - 1 ]; A[ j ] = Tmp; } } void Swap(int *x,int *y) { int temp; temp=*x; *x=*y; *y=temp; } ElementType Median3( ElementType A[ ], int Left, int Right ) { int Center = ( Left + Right ) / 2; if ( A[ Left ] > A[ Center ] ) Swap( &A[ Left ], &A[ Center ] ); if ( A[ Left ] > A[ Right ] ) Swap( &A[ Left ], &A[ Right ] ); if ( A[ Center ] > A[ Right ] ) Swap(&A[Center],&A[ Right ] ); Swap( &A[ Center ], &A[ Right - 1 ] ); return A[ Right - 1 ]; } void Qsort( ElementType A[ ], int Left, int Right ) { int i, j; ElementType Pivot; if ( Left + Cutoff <= Right ) { (1)_______________________________; i = Left; j = Right - 1; for( ; ; ) { (2)_______________________________; (3)_______________________________; if ( i < j ) Swap( &A[ i ], &A[ j ] ); else break; } Swap( &A[ i ], &A[ Right - 1 ] ); (4)_________________________________; (5)_________________________________; } else InsertionSort( A + Left, Right - Left + 1 ); } void QuickSort( ElementType A[ ], int N ) { Qsort( A, 0, N - 1 ); /* A: the array */ /* 0: Left index */ /* N - 1: Right index */ } int main() { int N; int i; ElementType A[MaxSize]; scanf("%d",&N); for(i=0;i<N;i++) scanf("%d",&A[i]); QuickSort(A,N); for(i=0; i<N; i++) printf("%d ", A[i]); }
时间: 2024-01-23 20:01:47 浏览: 66
这段代码是快速排序的实现,其中使用了三个函数:InsertionSort、Median3和Qsort。其中,InsertionSort函数是插入排序,用于在小范围内对数组排序;Median3函数是找到左、中、右三个位置上的元素,并将它们按照升序排列,最后将中间元素与倒数第二个元素进行交换,并返回中间元素;Qsort函数是快速排序的核心,它首先查看数组大小是否超过了Cutoff,如果超过,就使用快速排序;否则,就使用插入排序。
在Qsort函数中,(1)处使用了Median3函数来选择主元,(2)处使用了左右指针分别向中间移动的方式来进行元素的比较和交换,(3)处是元素比较的具体实现,(4)处是将主元放回正确的位置,(5)处是对主元左右两个子数组进行递归调用。
相关问题
#include <stdio.h> #include <stdlib.h> #define MAXSIZE 100 typedef int ElemType; typedef struct
这段代码是C语言中的头文件引用和一些定义的示例。其中,`#include <stdio.h>`和`#include <stdlib.h>`是用来引入标准库函数的头文件。`stdio.h`包含了输入输出相关的函数,如`printf`和`scanf`;`stdlib.h`包含了一些常用的函数,如内存分配函数`malloc`和随机数生成函数`rand`。
`#define MAXSIZE 100`是一个宏定义,用来定义一个常量`MAXSIZE`,它的值为100。
`typedef int ElemType;`是用来给`int`类型起一个别名`ElemType`,方便在代码中使用。
至于代码中的结构体部分,由于你没有提供完整的代码,所以无法给出具体的解释。但一般来说,结构体用于定义一种自定义的数据类型,可以包含多个不同类型的成员变量。
#include<stdio.h>#include<stdlib.h>#include<string.h>
在C语言中,`#include<stdio.h>`、`#include<stdlib.h>`和`#include<string.h>`分别包含了输入/输出、内存管理以及字符串处理相关的库。这里给你演示如何使用这些头文件中的函数:
1. **输入/输出(stdio.h)**:
```c
#include<stdio.h>
int main() {
printf("Hello, World!\n"); // 使用printf输出字符串
scanf("%s", "Enter your name: "); // 使用scanf从用户那里读取输入
return 0;
}
```
2. **内存管理(stdlib.h)**:
```c
#include<stdlib.h>
int *createArray(int size) {
int *array = malloc(size * sizeof(int)); // 分配动态内存
return array;
}
void freeMemory(int *array, int size) {
free(array); // 释放已分配的内存
}
```
3. **字符串处理(string.h)**:
```c
#include<string.h>
char* copyString(const char* src) {
char* dest = (char*)malloc(strlen(src) + 1); // 动态分配内存复制字符串
strcpy(dest, src);
return dest;
}
```
注意,C语言的标准库函数可能需要链接到适当的库,如`-lstdc++` 或 `-lm`,具体取决于编译器设置。
阅读全文