何大土  

2018年6月28日

摘要: //问题一:删除最小元素,并用最后一个元素填补 bool delMin(SqList &L,elemType &val){ if(L.length==0){ printf("顺序表为空!\n"); return ERROR; } elemType min = L.elems[0]; int index = 0; for(int i=1;il&&L.elems[r]==x){ ... 阅读全文
posted @ 2018-06-28 13:02 何大土 阅读(1096) 评论(0) 推荐(0) 编辑