From dfb5779820a1eab227c8f29f378921ca645eb4e6 Mon Sep 17 00:00:00 2001 From: Siddhartha Anand Date: Wed, 21 Nov 2018 21:15:53 +0530 Subject: [PATCH] Add traversal methods (#22428) Add traversal methods (inorder, preorder, postorder) for the binary search tree. --- .../algorithms/binary-search-trees/index.md | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/guide/english/algorithms/binary-search-trees/index.md b/guide/english/algorithms/binary-search-trees/index.md index 0c38551651a..0a1f9501b78 100644 --- a/guide/english/algorithms/binary-search-trees/index.md +++ b/guide/english/algorithms/binary-search-trees/index.md @@ -24,6 +24,9 @@ The BST is built upon the idea of the