Hi Mauro look at the discussion below

On Wednesday, June 29, 2016 at 5:16:23 PM UTC+2, Mauro wrote:
>
> I think you need to show us what you've tried so far.  Also have a look 
> at Datatstructures.jl for inspiration. 
>
> On Wed, 2016-06-29 at 11:29, Ahmed Mazari <[email protected] 
> <javascript:>> wrote: 
> > Hello , 
> > 
> > 
> > I need to implement a tree in Julia with depth of l=3. Initially the 
> root 
> > node has a vector of m=10000 random values (k=rand(m)).Then this vector 
> is 
> > divided into k=10 partitions where each node child has a vector of 
> n=1000 
> > values. Finally the leafs are connected to a given child node. 
> > 
> > each partition (child node) has 10 leafs where each leaf has a vector of 
> g= 
> > 100 values. Since each child node has a vector of 1000 values.this 
> latter 
> > is shared with its leafs 100 values for each leaf. so the structure of 
> the 
> > tree is as follows: 
> > 
> > 
> > 
> > level 0 root node :                             vector of 10000 values 
> > 
> > level 1                                10 child node each one of 1000 
> values 
> > 
> > level 2                   10 leafs for each child node of 100 values 
> (that 
> > means we have in total we have 100 leafs ) 
> > 
> > 
> > 
> > Thank you for helps 
>

Reply via email to