hi,
 
I got a little problem. I want to find the way of doing a B-TREE usingJAVA.UTIL. as there is many option possible i am a little bit lost.
 
I want to do this configuration.
 
 
          obj1
            |
            |__ obj11
                    |__obj111
                    |__obj112
                    |__obj113
            |__ obj12
                    |__obj121
                    |__obj122
                    |__obj123
                            |__ obj1231
                                        |__ obj12311
 
 
I would like to get this in output list :
 
    obj1.obj11
    obj1.obj12
 
    obj1.obj11.obj111   
    obj1.obj11.obj112   
    obj1.obj11.obj113
   
    obj1.obj12.obj121   
    obj1.obj12.obj122   
    obj1.obj12.obj123
 
    obj1.obj12.obj123.obj1231
    
    obj1.obj12.obj123.obj1231.obj12311
 
thanks in advance. I try Hashtzble, map, list but i do not anderstand completly what is the best for what i need.
Need soma help.                 
=========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to