Bitcoin Forum

Economy => Services => Topic started by: humper21 on July 13, 2015, 12:30:49 PM



Title: BST.java
Post by: humper21 on July 13, 2015, 12:30:49 PM
hello, I'm looking for people who can help me with my Binary search tree program
I can pay you 0.008BTC just for a java program or help me for free

So if the user had input this nodes: 7,1,3,2,5,4,6,8,9,10

                                                | 0|2 |3 |4 |5  |6 | 7 |8 |<--array
The output should be in BST array: | 7|1 |8 |3 | X |9 |  X|2 | and so on


Title: Re: BST.java
Post by: upsidedown75 on July 13, 2015, 12:58:32 PM
Why don't you use a ready-to-use library like http://algs4.cs.princeton.edu/32bst/BST.java.html ?