Browse Source

Add notions of the binary trees

pull/826/head
Augusto 3 years ago
parent
commit
9fae2e5968
  1. 6
      subjects/btreeinsertdata/README.md

6
subjects/btreeinsertdata/README.md

@ -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

Loading…
Cancel
Save