Add notions of the binary trees

This commit is contained in:
Augusto 2021-06-08 13:34:09 +01:00
parent 86f550a545
commit 9fae2e5968
1 changed files with 5 additions and 1 deletions

View File

@ -2,10 +2,14 @@
### Instructions
Write a function that inserts new data in a binary search tree following the properties of binary search trees.
Write a function that inserts new data in a `binary search tree` following the special properties of a `binary search trees`.
The nodes must be defined as follows :
### Notions
- [binary search trees](https://en.wikipedia.org/wiki/Binary_search_tree)
### Expected function
```go