Hi,
Iam new to java. I have to develop trees using java by taking data from the file. And the data is stored in the below format.
X A B C
A 1
B 2 3
C 4
and i want the tree in the following format..
X
|_______A
| |_______1
|
|_______B
| |_______2
| |_______3
|
|_______C
|_______4
Help me out in coding this...Thanks in advance...