Re: [julia-users] AVL Trees - SortedSet?

2016-02-04 Thread Ben Ward
Hi Kevin, Thanks! That's one less thing for me to implement - no point in re-doing stuff already in .jl packages :) On Thursday, February 4, 2016 at 12:48:50 AM UTC, Kevin Squire wrote: > > Not in a place where I can look at that link, but yes, SortedSet and > SortedDict are base on AVL trees.

Re: [julia-users] AVL Trees - SortedSet?

2016-02-03 Thread Kevin Squire
Not in a place where I can look at that link, but yes, SortedSet and SortedDict are base on AVL trees. Cheers, Kevin On Wednesday, February 3, 2016, Ben Ward wrote: > Hi, > > I'm looking to implement a C library in Julia which makes use of another > library which contains a sorted dictionary

[julia-users] AVL Trees - SortedSet?

2016-02-03 Thread Ben Ward
Hi, I'm looking to implement a C library in Julia which makes use of another library which contains a sorted dictionary called a AVL table. I don't know much about the technical internals of ALV table, and the C looks complicated to get into, if Julia already has something that does the job. D