GithubHelp home page GithubHelp logo

binary_trees's Introduction

binary_trees Binary tree is a type of tree structure that begins with a node. A node can have a maximum of two child (left and right) and a minimum of zero child. The size of a binary tree is the total number of nodes in it. The depth is the number of edges (or links) from the root to that particular node The height of binary_trees is the total number of edges from the root to the downmost node (leaf node). Binary tree can be accessed in tree ways: A) Inorder trasversal: the left nodes are first trasversed then the root and then the right node B) pre-order: here, the root node is first trasversed and then the left children followed by the right nodes c) post-order: The left is trasversed and then the right followed by the root. Trasversing usually uses a recursive function to begin operation at the leaf node. If a function is used to trasverse, then that fucntion will be called within itself and given a value which will be used as input in the stack; let's code

binary_trees's People

Contributors

chimekinglsey 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.