Let's go!!!!!
发布时间:2015-03-08 22:23:57
#include<stdio.h>#include<malloc.h>#include<stdlib.h>#define True 1#define False 0#define error do{printf("Init set error!");exit(1);}while(0);typedef int ElemType;typedef int Status;typedef struct NODE{ ElemType data; struct NODE *next;}Node;typedef struct LI.........【阅读全文】
发布时间:2014-12-10 22:33:44
//qksort.h#ifndef __QKSORT_H#define __QKSORT_Hint qksort(int *data,int i,int j);#endif//qksort.c#include <stdio.h>#include <malloc.h>#include <stdlib.h>#include <time.h>static int pvalue(int *data,int i,int j){ int r[3]={0}; int temp = 0; srand(.........【阅读全文】