Code Monkey home page Code Monkey logo

binary-trees's Introduction

BINARY TREES

You can use this app to display Binary Tree.

convert an tree array to doubly linkedlist

display an array to binary tree

Usage

First run the Menu.py file to start.

!!!HELLO TO BINARY TREE!!!

CHOOSE AN OPTION

1-BINARY SEARCH TREE (BST)
2-MIN HEAP
3-MAX HEAP

4-EXIT


-->

choose an option:\

1-BST:

INSERT A BST

ENTER THE NUM OF NODES

-->

then enter numbers of node
then enter each node:

ENTER NUM
-->

like this:

 ___64_
/      \
4     454
 \
 7_
   \
  24

2-MIN HEAP

INSERT A MIN HEAP

ENTER NUM OF ELEMENTS
-->
ENTER NUM
-->
     __2_
    /    \
  _54_  78
 /    \
464  64

3-MAX HEAP

INSERT A MAX HEAP

ENTER NUM OF ELEMENTS
-->
ENTER NUM
-->
         ___2222__
        /         \
    ___886_      778_
   /       \    /    \
  255_    64    8   456
 /    \
15   55

other usage of this code you can convert an array of binary tree into a doubly linkedlist
by MKnode.py .

array = [1, 2, 3, 4, 5, 6, 7]
#set the first index as root
doubly_linked_list = Node(array[0])
doubly_linked_list.convert_array_to_doubly_linked_list(array)
#also can display this array by
doubly_linked_list.display()

binary-trees's People

Contributors

ehsanshafi3i avatar

Stargazers

Kiavash avatar  avatar

Watchers

 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.