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 <halfpacho@gmail.com>
This commit is contained in:
Bikash Daga (Jain) 2022-09-10 05:01:28 +05:30 committed by GitHub
parent c5a89b9f94
commit 60fc753f7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
/** /**
* @file * @file
* @brief A generic [binary search tree](https://en.wikipedia.org/wiki/Binary_search_tree) implementation. * @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 * @see binary_search_tree.cpp
*/ */