From 60fc753f7f6af47162ae53a89122828abfe10e7e Mon Sep 17 00:00:00 2001 From: "Bikash Daga (Jain)" <95040719+bikashdaga@users.noreply.github.com> Date: Sat, 10 Sep 2022 05:01:28 +0530 Subject: [PATCH] docs: add another link for BST (#1960) * Added one Useful Link Have Added Scaler Topics Binary Search Tree (BSTs) Page. Kindly Please check the suggested changes. Hope this contribution helps * chore: apply suggestions from code review * chore: make the line shorter Co-authored-by: David Leal --- data_structures/binary_search_tree2.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/data_structures/binary_search_tree2.cpp b/data_structures/binary_search_tree2.cpp index d506de151..55ae3a438 100644 --- a/data_structures/binary_search_tree2.cpp +++ b/data_structures/binary_search_tree2.cpp @@ -1,6 +1,7 @@ /** * @file * @brief A generic [binary search tree](https://en.wikipedia.org/wiki/Binary_search_tree) implementation. + * Here you can find more information about the algorithm: [Scaler - Binary Search tree](https://www.scaler.com/topics/data-structures/binary-search-tree/). * @see binary_search_tree.cpp */