Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 413 Bytes

Ex_1_4_10.md

File metadata and controls

29 lines (17 loc) · 413 Bytes
title date draft tags categories
Algorithm4 Java Solution 1.4.10
2019-08-06 15:54:00 +0800
false
JAVA
TECH
archives

1.4.10

Problem:

Modify binary search so that it always returns the element with the smallest index that matches the search element (and still guarantees logarithmic running time).

Solution:

code:

Ex_1_4_10.java

Reference: