
public class CircularList {
	
	private ListElem tail;		// pointer to the last element in list
	private int size;		// size of the list
	
	public CircularList(){
		/*
		 * build an empty CircularList
		 */
		 
		tail = null;
		size = 0;
	}

        // Insert your methods here

}
