import java.util.*; public class eulertour { Stack path = new Stack(); LinkedList full_path = new LinkedList(); public void tour(node start, VisitListener vl) { path.clear(); full_path.clear(); } public static void main(String[] args) { } }