2024年9月2日

数据结构上机题

摘要: 习题1.8 二分查找 Position BinarySearch( List L, ElementType X ) { int l,r,mid; l=1; r=L->Last;//注意这里L不要写成l while(l<=r) { mid=(l+r)/2; if(L->Data[mid]<X) l=m 阅读全文

posted @ 2024-09-02 12:22 swj2529411658 阅读(7) 评论(0) 推荐(0) 编辑

导航