langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
10
Task/Binary-search/Mathematica/binary-search-2.math
Normal file
10
Task/Binary-search/Mathematica/binary-search-2.math
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
BinarySearch[x_List, val_] := Module[{lo = 1, hi = Length@x, mid},
|
||||
While[lo <= hi,
|
||||
mid = lo + Round@((hi - lo)/2);
|
||||
Which[x[[mid]] > val, hi = mid - 1,
|
||||
x[[mid]] < val, lo = mid + 1,
|
||||
True, Return[mid]
|
||||
];
|
||||
];
|
||||
Return[-1];
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue