epibook / epibook.github.io

Publishes to Github Pages
335 stars 238 forks source link

LoadBalancing.java's binary search can be improved #31

Open piyushmh opened 8 years ago

piyushmh commented 8 years ago

https://github.com/epibook/epibook.github.io/blob/master/solutions/java/src/main/java/com/epi/LoadBalancing.java#L12

The left end of the binary search is currently initialised to 0 where as it can be initially set to Math.ceil(sumOfAllBytes / numServers) since this is the lower bound for the server load.