Hacker News
- Grokking AVL and RAVL Trees https://photonlines.substack.com/p/grokking-avl-and-ravl-trees 20 comments
- Efficient AVL Tree in C# https://bitlush.com/blog/efficient-avl-tree-in-c-sharp 27 comments
- AVL tree implementation for Rust learning https://github.com/tamuhey/avltree 3 comments
- Purely Functional AVL Trees in Common Lisp (2018) https://two-wrongs.com/purely-functional-avl-trees-in-common-lisp.html 3 comments
- AVL Tree Confusion https://www.cs.usfca.edu/~galles/visualization/AVLtree.html 0 comments datastructures
- Interval Tree by Augmenting an AVL Tree https://en.wikipedia.org/wiki/Interval_tree 5 comments compsci
- Understanding AVL and Splay trees https://www.reddit.com/r/learnprogramming/comments/5iiz65/understanding_avl_and_splay_trees/ 3 comments learnprogramming
- AVL Trees in C++ http://kukuruku.co/hub/cpp/avl-trees 27 comments programming
- AVL Trees http://kukuruku.co/hub/cpp/avl-trees 14 comments cpp
- The AVL Tree: Implementation and Testing https://build-your-own.org/redis/10_avltree 40 comments programming
- Experimental generic implementations of various data structures (map, b-tree, AVL tree, rope, and more) https://github.com/zyedidia/generic 15 comments golang
- A collection of Algorithms and Data Structures with video lectures in Typescript [Week 3] (BST, AVL Tree, Red-black tree, B-tree, Hash Tables) https://github.com/jeffzh4ng/dsa-ts 3 comments typescript
- (Help) Weird bug with a AVL tree https://www.reddit.com/r/csharp/comments/4hdi18/help_weird_bug_with_a_avl_tree/ 4 comments csharp
- AVL tree implementation for Rust learning. https://www.reddit.com/r/rust/comments/fxobs9/avl_tree_implementation_for_rust_learning/ 14 comments rust
- Trees that Melt: Use of AVL Tree in Blockchains - Serokell https://serokell.io/blog/2019/03/19/trees-that-melt:-use-of-avl-tree-in-blockchains 5 comments haskell
- A type-level balanced AVL tree in OCaml https://gist.github.com/matthieubulte/e58dc1a6add5e114de0328f57dd3f460 6 comments programming
- Comparing AVL Trees in C++ and Haskell https://izbicki.me/blog/avl-tree-runtimes-c%2B%2B-vs-haskell.html 21 comments haskell
- Comparing AVL Trees in C++ and Haskell https://izbicki.me/blog/avl-tree-runtimes-c%2B%2B-vs-haskell.html 14 comments programming
- AVL balanced generic binary trees in Go https://github.com/VictorLowther/btree 14 comments golang
- Understanding Rust Through AVL Trees (A Long Intro Post) http://francismurillo.github.io/2019-07-31-understanding-rust-through-avl-trees/ 15 comments rust
- AVL Tree: A binary tree that can stay balanced by rotating https://discourse.opengenus.org/t/avl-tree-a-tree-that-can-stay-balanced-by-rotating/2094 34 comments compsci
- Find the max element in an AVL tree and point to it. https://www.reddit.com/r/learnprogramming/comments/75e6zh/find_the_max_element_in_an_avl_tree_and_point_to/ 7 comments learnprogramming
- Newb here, critique on this implementation of AVL trees please https://github.com/ranmrdrakono/avl_tree/blob/master/src/lib.rs 13 comments rust
- An Exercise in Swift: A generic self balancing AVL tree https://github.com/kingreza/swift-avl-tree 4 comments swift
- [C++]AVL Tree doesn't return the proper size after inserting items. https://www.reddit.com/r/learnprogramming/comments/9m18t9/cavl_tree_doesnt_return_the_proper_size_after/ 8 comments learnprogramming
- Self-balanced Binary Search Trees with AVL http://adrianmejia.com/blog/2018/07/16/self-balanced-binary-search-trees-with-avl-tree-data-structure-for-beginners/#.w13qse7nrlw.reddit 5 comments compsci
- Question: when would it make more sense to use an AVL tree data structure instead of a BST? http://en.wikipedia.org/wiki/AVL_tree 5 comments learnprogramming
- Notes on using GC-less maps based on AVL trees http://mathdev.org/node/27860 5 comments ats
- [Need Help] Been stuck trying to implement AVL tree insertion. I'm not able to figure out if it's a problem with my code or logic since the code runs fine but output is not expected. Any help would be appreciated. https://pastebin.com/sbczFNLq 8 comments typescript
- Verified AVL Trees in Haskell and Agda (side-by-side comparison of Haskell and Agda implementations) https://doisinkidney.com/posts/2018-07-30-verified-avl.html 5 comments haskell
- Addressing the red-black vs. AVL tree performance myths and new rank-balanced trees https://refactoringlightly.wordpress.com/2017/10/29/performance-of-avl-red-black-trees-in-java/ 11 comments programming
- Benchmarking self-balancing BSTs: AVL vs Red-black tree https://codedeposit.wordpress.com/2015/10/07/red-black-vs-avl/ 11 comments programming