我需要使用递归编写包含方法,这意味着查找“元素”是否存在于其中一个节点中。
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);
}
}