折半查找算法在顺序表中插入一个元素
//利用折半查找算法在一个有序表中插入数据x并保持表的有序性#include <stdio.h>#define MAXSIZE 30#include <iostream>#include <strin
折半查找算法在顺序表中插入一个元素