Skip to content

Commit 8473562

Browse files
committedDec 10, 2018
Fix broken links for AVL tree README.
1 parent afa3346 commit 8473562

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎src/data-structures/tree/avl-tree/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,24 @@ AVL tree with balance factors (green)
2525

2626
**Left-Left Rotation**
2727

28-
![Left-Left Rotation](http://btechsmartclass.com/DS/images/LL%20Rotation.png)
28+
![Left-Left Rotation](http://btechsmartclass.com/data_structures/ds_images/LL%20Rotation.png)
2929

3030
**Right-Right Rotation**
3131

32-
![Right-Right Rotation](http://btechsmartclass.com/DS/images/RR%20Rotation.png)
32+
![Right-Right Rotation](http://btechsmartclass.com/data_structures/ds_images/RR%20Rotation.png)
3333

3434
**Left-Right Rotation**
3535

36-
![Left-Right Rotation](http://btechsmartclass.com/DS/images/LR%20Rotation.png)
36+
![Left-Right Rotation](http://btechsmartclass.com/data_structures/ds_images/LR%20Rotation.png)
3737

3838
**Right-Left Rotation**
3939

40-
![Right-Right Rotation](http://btechsmartclass.com/DS/images/RL%20Rotation.png)
40+
![Right-Right Rotation](http://btechsmartclass.com/data_structures/ds_images/RL%20Rotation.png)
4141

4242
## References
4343

4444
* [Wikipedia](https://en.wikipedia.org/wiki/AVL_tree)
4545
* [Tutorials Point](https://www.tutorialspoint.com/data_structures_algorithms/avl_tree_algorithm.htm)
46-
* [BTech](http://btechsmartclass.com/DS/U5_T2.html)
46+
* [BTech](http://btechsmartclass.com/data_structures/avl-trees.html)
4747
* [AVL Tree Insertion on YouTube](https://www.youtube.com/watch?v=rbg7Qf8GkQ4&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=12&)
4848
* [AVL Tree Interactive Visualisations](https://www.cs.usfca.edu/~galles/visualization/AVLtree.html)

0 commit comments

Comments
 (0)
Please sign in to comment.