-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CHAMP - Compressed Hash-Array Mapped Prefix Tree #49
Comments
marking as up-for-grabs |
A ClojureScript implementation is in the work. Maybe it's helpful... or not :) Lean Hash Array Mapped Trie implementation in ClojureScript It will be presented at Clojure/west 2016 by Peter Schuck. |
Peter Schuck's Clojure/west 2016 presentation is now on Youtube: |
The Java implementation of the CHAMP data structure, by Steindorfer and Vinju (the authors of the http://michael.steindorfer.name/publications/oopsla15.pdf paper): https://github.com/usethesource/capsule Another implementation, by someone else, in Kotlin: https://github.com/norswap/triemap |
Out of interest - do you really expect a CHAMP to perform particularly well in .NET? |
Particularly well? Not unless the boxing/unboxing problem you mention can be solved. Better than the current PersistentHashMap? Absolutely; it suffers from the exact same boxing/unboxing issue for value types, so converting it to a CHAMP implementation should be a significant performance gain over the existing implementation. |
CHAMP conceptually splits each |
Possible addition to FSharpx.Collections?
http://michael.steindorfer.name/publications/oopsla15.pdf
The text was updated successfully, but these errors were encountered: