int ele[SIZE];int len;}Record;void InitRecord(Record *h,int *a){ int i=0;h->len=0;while(a[i]!=0){ h->ele[i+1]=a[i];i++;h->len++;} } int QKPass(Record *r,int low,int high){ int i=low,j=high,x;x=r->ele[i];while(i<j){ while(i<j&&x<=r->e...
你会写快速排序吗?如果会的话直接把快速排序用在结构体数组上,把要比较的项换成结构体成员,也就是年龄就行了。
(c): a b c d e f g h i k l j m p o n q s u z x y v t r w(i): a b c d e f g h i k l j m p o n q s u z x y v t r w(k): a b c d e f g h i j k l m p o n q s u z x y v t r w(p): a b c d e f g h i j k l m...