搜索:Binary_search

找到约 2 项符合「Binary_search」的查询结果

结果 2
https://www.eeworm.com/dl/654/154928.html 数据结构

简单的一个Binary_search查找

简单的一个Binary_search查找
下载 44
·
查看 1059
https://www.eeworm.com/dl/644/235172.html 汇编语言

function Binary_Search(L,a,b,x) begin if a>b then return(-1) else begin m:=(a+b) div 2

function Binary_Search(L,a,b,x) begin if a>b then return(-1) else begin m:=(a+b) div 2 if x=L[m] then return(m) else if x>L[m] then
下载 190
·
查看 1119