Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 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