Search code examples
javauser-interfaceb-tree

Is there an API to draw a B-TREE?


That's a simple question: is there an API to draw a B-tree in Java? I just dont want to spend much time reinventing the wheel. I am not having trouble with the algorithm per si, mine works perfectly fine after a lot of reading (specially Lafore's Data Structures & Algorithms in Java), I just dont know how to print a B-tree in a good way.

Thanks in advance.


Solution

  • You've got a couple of options to "render" a graph to screen -

    • Graphviz has a Java API (Edit: an addon called LJV which gives the API).

    • I think you ought to be able to use the free version of JGraph to do the same.