Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

haquezameer/react-binary-tree

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Binary Tree Traversal visualizer

This project is a binary tree traversal visualizer. Check out Live demo.

Supported Traversals:

1. Level Order Traversal
2. Depth First Traversal(Pre-order,Post-order,In-order)

You can learn more about these algo's here:

  1. Preorder,Postorder,Inorder
  2. Level Order Traversal

To run the project

1. Clone the repo.
2. Install dependencies using `npm install` or `yarn install`.
3. Run the app using `npm run start` or `yarn start`.

The project structure:

├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
├── README.md
├── src
│   ├── App.css
│   ├── App.js
│   ├── App.test.js
│   ├── components
│   │   ├── Controls
│   │   │   ├── Controls.css
│   │   │   └── Controls.js
│   │   ├── index.js
│   │   └── Visualizer
│   │       ├── TraversedList.css
│   │       ├── TraversedList.js
│   │       ├── Visualizer.css
│   │       └── Visualizer.js
│   ├── index.css
│   ├── index.js
│   ├── lib
│   │   ├── animateNodeInTree.js
│   │   └── tree.js
Morty Proxy This is a proxified and sanitized view of the page, visit original site.