Is there any constraint onto compareTo method which orders objects put into the standard java TreeSet (i.e. collection implemented as Red-Black tree)? I have
public class RuleTuple implements Comparable {
String head;
String[] rhs;
public String toString() {
StringBuffer b = new StringBuffer();
b.append(head+":");
for( String t: rhs )
b.append(" "+t);
return b.toString();
}
public int compareTo(Object obj) {
RuleTuple src = (RuleTuple)obj;
int cmp = head.compareTo(src.head);
if( cmp!=0 )
return cmp;
if( rhs.length != src.rhs.length )
return rhs.length - src.rhs.length;
for( int i=0; i<rhs.length; i++ )
if( rhs[i].compareTo(src.rhs[i]) != 0 )
return rhs[i].compareTo(src.rhs[i]);
return 0;
}
...
}
I assumed that any method mapping object into linear order is fine, as long as it meets partial order criteria: reflexivity, asymmetry, and transitivity. Among those only transitivity is not immediately obvious, but it seems to me that if objects are compared by ranked criteria transitivity follows. (I compare headers first, if identical, then compare lengths of rhs, if identical, then compare array's elements.)
Apparently, the RuleTuple.compareTo() method is not consistent, since when deleting "test: test[22,33)" it traverses the tree in the following sequence:
test[22,33): 'HAVING' condition <-- comparison#1
test: test[4,19) group_by_clause <-- comparison#2
test: model_clause <-- comparison#3
test: group_by_clause
test:
test: test[22,33)
test: group_by_clause test[22,33) <-- comparison#4; wrong branch!
test: test[4,19) <-- comparison#5
test: group_by_clause model_clause
...
test: test[4,19) group_by_clause model_clause
...
test[4,19): test[5,8) test[8,11)
...
As a result it fails to find and delete an object which is there on the tree. Is my intuition correct?
this.head == null, butsrc.head != null? I think you would get a NullPointerException on switching the viewpoint. Also, you might think about not invokingrhs[i].compareTo(src.rhs[i])twice. (This is only an optimization, not the reason for your problem, which I don't really understand.) Apart from this (and that you should use generics here), your compareTo method looks fine. – Paŭlo Ebermann Apr 28 '11 at 22:43