package dataStructure; /** * Created by zj on 2017/2/20. */ public interface Iterator { public boolean hasNext(); public Object next(); }