package list.dl.algo; import list.dl.DLList; /** * Algorithm on the host as a whole. */ public interface IDLAlgo { /** * @param host * @param input */ public abstract Object visit(DLList host, Object input); }