利用指针排序与选择排序算法
Posted grooovvve
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用指针排序与选择排序算法相关的知识,希望对你有一定的参考价值。
1 //读入字符串,并排序字符串 2 #include <stdio.h> 3 #include <string.h> 4 #define SIZE 81 5 #define LIM 20 6 #define HALT "" 7 8 void stsrt(char * strings [], int num); //字符串排序函数 9 char * s_gets(char * st,int n); 10 11 int main(void) 12 { 13 char input[LIM][SIZE]; 14 char *ptstr[LIM]; 15 int ct =0; 16 int k; 17 18 printf("Input up to %d lines,and I will sort them. ",LIM); 19 printf("To stop,press the Enter key at a line‘s start. "); 20 21 while(ct<LIM && s_gets(input[ct],SIZE)!= NULL && input[ct][0]!=‘