From c40a8a9d58b0ee059bcc96939770e2aa5bb14a9f Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Sun, 9 Jun 2024 23:59:21 +0200 Subject: [PATCH] algorithms(rank-balanced-trees): add skeleton for AVL relaxations Signed-off-by: Matej Focko --- .../99-rank-balanced-trees/05-avl-relaxations.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 algorithms/99-rank-balanced-trees/05-avl-relaxations.md diff --git a/algorithms/99-rank-balanced-trees/05-avl-relaxations.md b/algorithms/99-rank-balanced-trees/05-avl-relaxations.md new file mode 100644 index 0000000..6cb3385 --- /dev/null +++ b/algorithms/99-rank-balanced-trees/05-avl-relaxations.md @@ -0,0 +1,15 @@ +--- +id: avl-relaxations +slug: /rank-balanced-trees/avl-relaxations +title: Relaxations of the AVL tree +description: | + Implementing the WAVL and rAVL trees. +tags: + - balanced trees + - rank-balanced trees + - avl tree + - wavl tree + - ravl tree +last_update: + date: 2024-06-30 +---