Re: [julia-users] Re: Recursive data structures with Julia

2016-11-04 Thread Angel de Vicente
Hi, Páll Haraldsson writes: > I've been trying to implement some code to build Binary Search Trees. > > Is this a genuine need or an exercise? I quickly looked at Datastructures.jl: a genuine need (well, not really the BSTs, but recursive data structures in general. In this thread I have ano

Re: [julia-users] Re: Recursive data structures with Julia

2016-11-04 Thread Angel de Vicente
Hi, hubert_tiey...@t-online.de writes: > Hi, > > I've been trying to implement some code to build Binary Search > Trees. The code below works, I'm able to build a tree and then print > it > in ascending order, but it is quite ugly, with those Nullable types