Dimitar Chaushev
-
Frontpage
Modulo problem in Java
How I encountered the modulo problem in Java? While working on a project, I needed to implement a cyclic array(deque) in java. This is an array with fixed size, where you append elements, and when you fill the whole array, you start over overwriting the elements from the beginning: The Example: I wanted to have […]