Quantcast
Channel: naive suffix tree implementation in Java - Stack Overflow
Browsing latest articles
Browse All 2 View Live

Answer by kraskevich for naive suffix tree implementation in Java

I would do it this way:class SuffixTree { // A tree only needs to know about the root Node. Node root;}// A Node contains a mapping from the first character to// an Edge that corresponds to it.// It...

View Article



naive suffix tree implementation in Java

I am trying to write suffix tree class with a naive building algorithm which is O(m^2) and not Ukkonen. My doubt is regarding how to represent the tree. So far, I have got this. But I do not think that...

View Article
Browsing latest articles
Browse All 2 View Live




Latest Images