What is the best way to approach the following issue?
I am given a 2d array of nodes that looks like this
1083 1676
1083 1084
1084 1085
1085 1086
each line contains two nodes that are connected to each other. I need to create a tree (binary tree is preferred) where all the nodes are connected to each other.
What type of tree algorithm in java should be used? Is there a type of graph that can be used to plot two points and connect them to other points?
I need to create a tree [...] where all the nodes are connected to each other.This is not a tree, as it would create cycles. Or do you want to create a tree from the given array? – hage Nov 27 '11 at 13:41