C++利用指针数组和快排对输入的字符串进行排序

 
#include <stdio.h>
#include <string>

#define MAXLINES 5000 /*最多可以输入5000行*/
#define MAXLEN 1000 /*max length of any input line*/
#define ALLOCSIZE 10000 /*size of available space */

char *lineptr[MAXLINES]; /*指向所有行的指针*/
static char allocbuf[ALLOCSIZE]; /*storage for alloc*/
static char *allocp = allocbuf; /*next free position */


int readlines(char *lineptr[], int nlines);
void writelines(char *lineptr[], int nlines);
int getline(char *, int);
char *alloc(int);

void qsort(char *lineptr[], int left, int right);

/* sort input lines*/
int main(){
	int nlines; /*number of input lines read*/

	if ((nlines = readlines(lineptr, MAXLINES)) > 0) {
		qsort(lineptr, 0, nlines - 1);
		writelines(lineptr, nlines);
		return 0;
	}
	else{
		printf(" error : input too big to sort \n");
		return 1;
	}

	
}


/*readlines : read input lines*/
int readlines(char *lineptr[], int maxlines){
	int len, nlines;
	char *p, line[MAXLEN];

	nlines = 0;
	while ((len = getline(line, MAXLEN)) > 0) {
		if (nlines >= maxlines || (p = alloc(len)) == NULL) {
			return -1;
		}
		else{
			line[len - 1] = '\0';/*删除换行符*/
			strcpy(p, line);
			lineptr[nlines++] = p;
		}
	}
	return nlines;
}

/*writelines : write output lines */
void writelines(char *lineptr[], int nlines){
	int i ;

	for ( i = 0; i < nlines; i ++) {
		printf("%s\n", lineptr[i]);
	}
}

char *alloc(int n){/* return pointer to n characters*/
	if (allocbuf + ALLOCSIZE - allocp >= n) {
		allocp += n;
		return allocp - n;/*old p*/
	}
	else{ /* not enough room*/
		return 0;
	}
}

/************************************************************************/
/* qsort : sort v[left]...v[right] into increasing order
/************************************************************************/
void qsort(char *v[], int left, int right){
	int i , last;
	void swap(char *v[], int i , int j);//声明交换函数

	if (left >= right) {
		return;
	}

	swap(v, left, (left + right) / 2);
	last = left;
	for (i = left + 1; i <= right; i ++) {
		if (strcmp(v[i], v[left]) < 0) {
			swap(v, ++last, i);
		}
	}
	swap(v, left, last);
	qsort(v,left, last - 1);
	qsort(v, last + 1, right);
}

void swap(char *v[], int i , int j){
	char *temp;

	temp = v[i];
	v[i] = v[j];
	v[j] = temp;
}

/************************************************************************/
/* getline : get line into s, return length
/************************************************************************/
int getline(char s[], int lim){
	int c, i;

	i = 0;
	while ( --lim > 0 && (c = getchar()) != EOF && c != '\n') {
		s[i++] = c;
	}

	if (c == '\n') {
		s[i++] = c;
	}
	s[i] = '\0';
	return i;
}

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值