This is a simple web app visualizing Tree Data structure traversal using React.
The user can create a tree by inserting nodes and then choose between different traversals to see how they run in effect. As of now, Inorder, Preoder and Postorder traversals are visualized. Features like search (DFS,BFS) will be implemented soon.
This project is completely built on React.
First, create a fork of the ashikvarma11/tree-traverse repo by hitting the fork
button on the GitHub page.
Next, clone our repository onto your computer with this command (replacing YOUR_USERNAME with your actual GitHub username)
git clone [email protected]:ashikvarma11/tree-traverse.git
Once cloning is complete, change directory to the repo.
cd tree-traverse
Now add your fork as a remote
git remote add fork [email protected]:<YOUR_NAME>/tree-traverse.git
Create a new local branch
git checkout -b my-awesome-fix
Run the following commands to set up the development environment.
npm install
This will download and install all packages needed.