package list.dl.algo; import list.dl.DLList; /** * Algorithm for the right side of the host. */ public interface IAlgoRight { /** * @param host * @param input */ public abstract Object rightEndCase(DLList host, Object input); /** * @param host * @param input */ public abstract Object dataNodeCase(DLList host, Object input); }