Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.19 KB

README.md

File metadata and controls

46 lines (29 loc) · 1.19 KB

tree-traverse

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.

Installation

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

Preparing Your Local Environment for Development

Run the following commands to set up the development environment.

npm install

This will download and install all packages needed.