Data-Structures-and-Algorithms-in-Java icon indicating copy to clipboard operation
Data-Structures-and-Algorithms-in-Java copied to clipboard

Sharpen your problem solving skills by learning core computer science concepts in a pain-free manner

Results 5 Data-Structures-and-Algorithms-in-Java issues
Sort by recently updated
recently updated
newest added

I'm reading the BigO calculation on page 19, on which, for the worst-case scenario of the inner loop, `n*(n*8)` is given, but for the outer loop, `4n` is given. If...

binary search recursive implementation does not handle correctly scenario when an element to search for is greater than the last input element by throwing the following exception: java.lang.ArrayIndexOutOfBoundsException: 10 at...

The code successfully converts octal to decimal numbers For instance, if the input is 75532, the algorithm loops through the input from the last digit using the conversion formula i.e...

https://github.com/TrainingByPackt/Data-Structures-and-Algorithms-in-Java/blob/0ad5788f0785e3018e6a5f781f7134c66dd29672/src/main/java/com/packt/datastructuresandalg/lesson1/binarytodecimal/BinaryToDecimal.java#L10