Skip to content

Commit

Permalink
fix: typos in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ancavar committed Apr 27, 2023
1 parent 6b8eeeb commit e8c7c35
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Trees library.
# Binary search trees library.
> An open source library written in Kotlin to work with data structures such as AVL tree, red-black tree, and binary search tree.
## 🖍 Used technology
![Kotlin](https://img.shields.io/badge/-Kotlin-61DAFB?logo=kotlin)
Expand All @@ -14,11 +14,11 @@ To build the library run
```
To run PostgreSQL with docker:
```
./run-db.sh
./start-db.sh
```
or
```
./run-db.bat
./start-db.bat
```

## Using binary search trees
Expand Down Expand Up @@ -67,6 +67,7 @@ You can also save binary search tree to SQL database:
And you can save red-black tree to Neo4j database
```kotlin
val tree = RedBlackTree(1, "apple")
tree.setName("test")
val controller = Neoj4Conroller()
contoller.saveTree(tree)
val remTree = controller.loadTree("test")
Expand Down

0 comments on commit e8c7c35

Please sign in to comment.