import java.lang.*; import java.util.*; /** Interface for any object that implements a search algorithm. */ public interface SearchMethod { /** Perform the search. */ public SearchNode search(); }