Giter Club home page Giter Club logo

table2binarytree's Introduction

Table to Binary Tree

Task

Turn this:

Name Report 1 Report 2
Tim Jony Phil
Phil Craig Eddie
Jony Dan Katie
Katie Peter Andrea

Into a nice Binary Tree.

Usage

Creating trees

Trees can be created using the Tree.new(value,left,right) syntax. Assigning the left and right parameters is optional and will default to nil if not assigned. You can simply use tree_name.left = another_tree if you want to assign left or right values later.

Traversing

There are three ways to depth-first traverse a binary tree. In order to traverse the tree , use tree_obj.traverse(root_tree, "traveral method"), where "traversal method" is either in_order_traversal, preorder_traversal or in_order_traversal input as strings.

Example output

------- Pre Order --------
Tim,Jony,Dan,Katie,Peter,Andrea,Phil,Craig,Eddie,
------- In Order --------
Dan,Jony,Peter,Katie,Andrea,Tim,Craig,Phil,Eddie,
------- Post Order --------
Dan,Peter,Andrea,Katie,Jony,Craig,Eddie,Phil,Tim,

table2binarytree's People

Contributors

hobogrammer avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.