Tufan Görel
Tuesday, March 15, 2016
Array of HashMaps in Java
›
HashMap in Java is one of the common data structures used to store key-value pairs. HashMap can also be used as items of an ordinary array....
Thursday, November 12, 2015
Maximum Contiguous Subsequence Sum in Linearithmic Time Recursively in Java
›
There are different solutions to maximum subsequence sum problem with varying complexities such as linear , quadratic and cubic . There i...
Finding Maximum of Three Integers in Java
›
Finding maximum of three integers problem helps to understand if-else branching and conditionals topic in a better way. Following is the i...
Power of a Number Implementation Recursive in Java
›
Calculation of exponentiation returns the value of the base number a raised to the exponent n. Following is the recursive implementation o...
Greatest Common Divisor GCD Implementation Recursive and Iterative in Java
›
The greatest common divisor (gcd) of two integers is the largest positive integer that divides the numbers without a remainder. For examp...
›
Home
View web version