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

ru.greatbit.utils.tree.nodes.AvlNode Maven / Gradle / Ivy

package ru.greatbit.utils.tree.nodes;

/**
 * Created by azee on 5/8/14.
 * AVL-tree node implementation
 */
public class AvlNode extends BaseBinary{

    private int height;

    public int getHeight() {
        return height;
    }

    public void setHeight(int height) {
        this.height = height;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy