我正在对一些元素形成历史性的视图。 每个元素都有开始和结束日期。 时间不能重叠, 所以每个开始日期必须等于或晚于之前的结束日期。 如果一个结束日期是空的, 元素从开始到结束日期一直有效 。
为了测试目的,我创造了这个类:
public class Entry implements Comparable<Entry>
{
Integer start;
Integer end;
public Entry(Integer s, Integer e)
{
start = s;
end = e;
}
@Override
public boolean equals(Object obj)
{
if (obj instanceof Entry)
{
return compareTo((Entry) obj) == 0;
}
return false;
}
@Override
public int compareTo(Entry o)
{
if (o.end != null // other ends before or when this starts
&& (o.end.equals(start) || o.end < start ))
{
return 1;
}
if (end != null // other starts after or when this ends
&& (o.start.equals(end) || o.start > end ))
{
return -1;
}
return 0;
}
}
我用树图来排序元素。 现在我有问题, 我无法获得当前活动元素或第一个元素 。
最高比率方法应该能解决问题:
返回此集合中大于或等于给定元素的最小元素,如果没有该元素,则返回无效元素。
然而,这行不通。
在一个测试案例中,我创造了一个树丛 和一堆条目:
TreeSet<Entry> ts = new TreeSet<Entry>();
ts.add(new Entry(1, 3));
ts.add(new Entry(3, 5));
ts.add(new Entry(5, 7));
ts.add(new Entry(7, 9));
ts.add(new Entry(9, 11));
ts.add(new Entry(11, 13));
ts.add(new Entry(13, 15));
然后,我用以下代码获得天花板:
ts.ceiling(new Entry(5, null));
The result I expect is the Entry with start 5 and end 7 (the equal Entry). However the result is the Entry with start 7 and end 9 (the greater Entry). Both results qualify as equal to or greater than the given element. But since the JavaDoc mentions it returns the least element, I expect the 5-7 Entry.