All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0101_0200.s0146_lru_cache.LruCacheNode Maven / Gradle / Ivy

package g0101_0200.s0146_lru_cache;

class LruCacheNode {
    int key;
    int value;
    LruCacheNode prev;
    LruCacheNode next;

    public LruCacheNode(int k, int v) {
        key = k;
        value = v;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy