这是类头及其以下字段:
public class SinglyLinkedList <E> implements MiniList <E>
{
protected Entry <E> head = null;
private int size = 0;
我需要为我的实验室实现此方法,但我对 LinkedLists 一无所知:
public boolean add(E element)
{
//method should return true once element is added
//EDIT: I THINK I SOLVED IT:
head.element = element;
return true;
//Does everyone think the two lines above look correct?
}
所以非常简单的问题,我对非随机访问数据结构很陌生。有人可以为我解决上述问题吗?我需要一个基础,这样我才能继续实验室的其余部分。