We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 884fa29 commit 9406eb9Copy full SHA for 9406eb9
src/main/java/com/thealgorithms/datastructures/caches/RRCache.java
@@ -31,6 +31,7 @@
31
* @param <K> the type of keys maintained by this cache
32
* @param <V> the type of mapped values
33
*
34
+ * See <a href="https://en.wikipedia.org/wiki/Cache_replacement_policies#Random_replacement_(RR)">Random Replacement</a>
35
* @author Kevin Babu (<a href="https://www.github.com/KevinMwita7">GitHub</a>)
36
*/
37
public final class RRCache<K, V> {
0 commit comments