Skip to content

Commit 61d41b8

Browse files
committed
docs(readme): parte searching into modules
1 parent 1cb1c39 commit 61d41b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Usually these structures have the pattern of associating a value with a key. Tha
6969

7070
### Binary Search Trees
7171

72-
These searching algorithms use the data structure called binary tree (it is basically a recursive data structure like a linked list that points at two nodes at a time).
72+
These searching algorithms use the data structure called binary tree (it is basically a recursive data structure like a linked list that points at two nodes at the same time).
7373

7474
- [**Binary Search Tree:**](./algorithms/searching/symbol-table/BinarySearchTree.js) It is a symbol table that uses the binary tree data structure to handle all searching process. So, each node in the tree has a key that is larger than the keys in all node's left subtree and smaller than the keys in all nodes in that node's right subtree.
7575

0 commit comments

Comments
 (0)