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

com.github.coderodde.util.Node Maven / Gradle / Ivy

package com.github.coderodde.util;

class Node {
    
    E item;
    Node prev;
    Node next;
    
    Node(E item) {
        this.item = item;
    }

    @Override
    public String toString() {
        return "[Node; item = " + item + "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy