From 8473562b7ec79a7dc4354db5e9802719f1bdd626 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Mon, 10 Dec 2018 18:37:13 +0200 Subject: [PATCH] Fix broken links for AVL tree README. --- src/data-structures/tree/avl-tree/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/data-structures/tree/avl-tree/README.md b/src/data-structures/tree/avl-tree/README.md index ff313a18..8df90f0a 100644 --- a/src/data-structures/tree/avl-tree/README.md +++ b/src/data-structures/tree/avl-tree/README.md @@ -25,24 +25,24 @@ AVL tree with balance factors (green) **Left-Left Rotation** -![Left-Left Rotation](http://btechsmartclass.com/DS/images/LL%20Rotation.png) +![Left-Left Rotation](http://btechsmartclass.com/data_structures/ds_images/LL%20Rotation.png) **Right-Right Rotation** -![Right-Right Rotation](http://btechsmartclass.com/DS/images/RR%20Rotation.png) +![Right-Right Rotation](http://btechsmartclass.com/data_structures/ds_images/RR%20Rotation.png) **Left-Right Rotation** -![Left-Right Rotation](http://btechsmartclass.com/DS/images/LR%20Rotation.png) +![Left-Right Rotation](http://btechsmartclass.com/data_structures/ds_images/LR%20Rotation.png) **Right-Left Rotation** -![Right-Right Rotation](http://btechsmartclass.com/DS/images/RL%20Rotation.png) +![Right-Right Rotation](http://btechsmartclass.com/data_structures/ds_images/RL%20Rotation.png) ## References * [Wikipedia](https://en.wikipedia.org/wiki/AVL_tree) * [Tutorials Point](https://www.tutorialspoint.com/data_structures_algorithms/avl_tree_algorithm.htm) -* [BTech](http://btechsmartclass.com/DS/U5_T2.html) +* [BTech](http://btechsmartclass.com/data_structures/avl-trees.html) * [AVL Tree Insertion on YouTube](https://www.youtube.com/watch?v=rbg7Qf8GkQ4&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=12&) * [AVL Tree Interactive Visualisations](https://www.cs.usfca.edu/~galles/visualization/AVLtree.html)