摘要: #include <stdio.h>#define MaxSize 100typedef int KeyType; /*关键字类型*/typedef char ElemType[10]; /*其他数据项类型*/typedef struct { KeyType key; /*关键字域*/ ElemType data; /*其他数据域*/} LineList; /*线性表元素类型*/void BubbleSort(LineList R[],int n){ int i,j,exchange; LineList tmp; for (i=0;i<n-1;i++) { exc... 阅读全文
posted @ 2012-12-03 13:31 JIANG-YI 阅读(390) 评论(0) 推荐(0)