Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible in jdom to get the children of a node that share a certain attribute without having to look at all children in bruteforce? Is search in logarithmic time possible?

share|improve this question

2 Answers

up vote 1 down vote accepted

Is search in logarithmic time possible?

No, because that would require some sort of index keyed on that particular attribute, and why would JDOM keep such an index?

You could have an XPath implementation that builds such an index internally to speed up repeated searches, but it would still have to build it first.

share|improve this answer

If you wanted to create an index on the specific attribute, you could use SAX and create an index as you parse the document. This could give you O(1) to find the attribute, after you constructed the index.

In JDOM, a logrithmic search would be impossible because, in divide and conquer searches an ordering of the nodes is assumed (like in a binary search tree). Since the Elements of a JDOM Document have no ordering, there is no way to shrink the search space.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.