gmMustafa / BST-Visualizer

A Binary Search Tree Visualizer Android App (Kotlin)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BST-Visualizer

A Binary Search Tree Visualizer Android App (Kotlin)

Binary Search Tree is a node-based binary tree data structure which has the following properties:

### The left subtree of a node contains only nodes with keys lesser than the node’s key.
### The right subtree of a node contains only nodes with keys greater than the node’s key.
### The left and right subtree each must also be a binary search tree.

Screens

Main Screen Mian Screen With Nodes Find Node Delete Node

About

A Binary Search Tree Visualizer Android App (Kotlin)


Languages

Language:Kotlin 100.0%