ノードの 1 つに「要素」が存在するかどうかを調べる再帰を使用して、contains メソッドを記述する必要があります。
public class SortedSetNode implements Set
{
protected String value;
protected SortedSetNode next;
}
public boolean contains(String el) {
if (next.getValue().equals(el))
{
return true;
}
else
{
next.contains(el);
}
}