Giter VIP home page Giter VIP logo

pretty-print-binary-tree's Introduction

Pretty-prints a binary tree with child fields left and right. Each node contains a data field, which is printed.

Run python tree.py and check out the results.

The tree may be of any depth, but usually after 6 levels it's too wide for most screens.

Looks best when the nodes' printed values are under 3 characters long (especially on leaf nodes).

# prep the tree...
# 
# layer 1
root = Node('A')

# layer 2
root.left = Node('B')
root.right = Node('C')

# layer 3
root.left.left = Node('D')
root.left.right = Node('E')

# add a sub-tree ('X' nodes) using the createTree method
root.left.right.right = Node.createTree(2)

root.right.left = Node('F')
root.right.right = Node('G')

# layer 3
root.left.left.left = Node('H')
root.left.left.right = Node('I')
root.left.right.left = Node('J')
root.right.right.left = Node('N')
root.right.right.right = Node('O')

root.prettyPrint()
              ______________A______________ 
             /                             \
      ______B______                   ______C______ 
     /             \                 /             \
  __D__           __E__             F             __G__ 
 /     \         /     \                         /     \
H       I       J       X                       N       O 
                       / \                                
                      X  XX                                

pretty-print-binary-tree's People

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.