C语言减半算法

C语言折半算法#include stdio.h#define LEN 8int a[LEN] { 1, 2, 2, 2, 5, 6, 8, 9 }int binarysearc

C语言折半算法