Skip to content

Latest commit

 

History

History
103 lines (66 loc) · 2.92 KB

README.md

File metadata and controls

103 lines (66 loc) · 2.92 KB
Binarysearchtree

 

Binary search tree

Github top language Github language count Repository size License

About   |   Features   |   Technologies   |   Requirements   |   Starting   |   License   |   Author


🎯 About

Repository used to study and implement the binary tree search algorithm

✨ Features

✔️ insert ✔️ Asc Order ✔️ Dec Order

🚀 Technologies

The following tools were used in this project:

✅ Requirements

Before starting 🏁, you need to have Git and Node/GoLang installed.

🏁 Starting

# Clone this project
$ git clone https://github.com/apenasgabs/binarysearchtree

# Access
$ cd binarysearchtree

# Install dependencies
$ npm i

# Run the project
$ npm run js
# to run the JavaScript version

$ npm run ts
# to run the TypeScript version

# to run the GoLang version
$ npm run go

# The server will initialize in the <http://localhost:3000>

📝 License

This project is under license from MIT. For more details, see the LICENSE file.

Made with ❤️ by Gabriel Rodrigues

 

Back to top