iluwatar / 30-seconds-of-java

Collection of reusable tested Java 17 compatible code snippets that you can understand in 30 seconds or less.
https://java-design-patterns.com/snippets.html
MIT License
1.04k stars 410 forks source link

Update BinarySearchSnippet.java #183

Closed vedang685 closed 1 year ago

vedang685 commented 1 year ago

This edited code will discards the recursion method of calling the binarysearch function again and again and using unnecessary heap memory. Better and easy to understand