二分查找_詳解[原理+題目]

6-1 二分查找 (20 point(s)) 本題要求實現二分查找算法。 函數接口定義: Position BinarySearch( List L, ElementType X ); 其中List結構定義如下: typedef int Position; typedef struct LNode List; struct LNode { ElementType Data[MAXSIZE]; Po
相關文章
相關標籤/搜索