您的位置:首页 > 其它

线性表接口

2015-06-07 16:22 260 查看
public interface IList {
    public Node getHead();
    public void clear();
    public boolean isEmpty();
    public int length();
    public Object get(int i)throws Exception;
    public void insert(int i, Object x)throws Exception;
    public void remove(int i)throws Exception;
    public int indexOf(Object x);
    public void display();
  
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: