From 780402afd688dcdafcd2ad3f6544f6aa4d6ae2b8 Mon Sep 17 00:00:00 2001 From: dev-aly3n <79654879+dev-aly3n@users.noreply.github.com> Date: Sun, 4 Feb 2024 19:32:18 +0330 Subject: [PATCH] fix: broken link in python and also add another similar resource (#5045) * fix: broken link in python and also add another similar resource * add new resource to binary search trees in python * Update src/data/roadmaps/python/content/101-data-structures-and-algorithms/103-binary-search-trees.md --------- Co-authored-by: Arik Chakma --- .../103-binary-search-trees.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/python/content/101-data-structures-and-algorithms/103-binary-search-trees.md b/src/data/roadmaps/python/content/101-data-structures-and-algorithms/103-binary-search-trees.md index 74adc67d5..5201bbc40 100644 --- a/src/data/roadmaps/python/content/101-data-structures-and-algorithms/103-binary-search-trees.md +++ b/src/data/roadmaps/python/content/101-data-structures-and-algorithms/103-binary-search-trees.md @@ -5,5 +5,7 @@ A binary search tree, also called an ordered or sorted binary tree, is a rooted Visit the following resources to learn more: - [Tree Data Structure | Illustrated Data Structures](https://www.youtube.com/watch?v=S2W3SXGPVyU) -- [How to Implement Binary Search Tree in Python](https://www.section.io/engineering-education/implementing-binary-search-tree-using-python/) +- [Writing a Binary Search Tree in Python With Examples](https://blog.boot.dev/computer-science/binary-search-tree-in-python/) +- [How to Implement Binary Search Tree in Python](https://web.archive.org/web/20230601181553/https://www.section.io/engineering-education/implementing-binary-search-tree-using-python/) +- [Binary Search Tree in Python](https://www.pythonforbeginners.com/data-structures/binary-search-tree-in-python) - [Problem Set](https://www.geeksforgeeks.org/binary-search-tree-data-structure/?ref=gcse)