摘要: 1 #include 2 typedef int KeyT; 3 typedef int ElemType; 4 typedef struct 5 { 6 KeyT key; 7 ElemType data; 8 }ST; 9 void Sift(ST R[],int low,int high) 10 { 11 int i=low,j=2*i; 12 ... 阅读全文
posted @ 2019-06-11 11:27 孙贤超 阅读(191) 评论(0) 推荐(0) 编辑