NO 链表方法名称 描述 1 public void add(数据类型 对象) 向链表中增加数据 2 public int size() 查看链表中数据个数 3 public boolean isEmpty() 查看链表是否为空 4 public void clean() 清空链表 5 public 数据类型 get(int index) 返回指定索引的数据对象,需要使用自定义类中的Compare()函数方法 6 public boolean contains(数据类型 对象) 查看链表中是否…