Skip to content

otienogeoffrey812/binary-tree-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Binary-Tree-Algorithms

  • Insert
  • Find
  • Height of a tree
  • Minimum Value In A Tree
  • Equality Between Trees
  • Validating A Binary Search Tree
  • Nodes At K Distance
  • Print Leaves
  • Sum Of Nodes
  • Invert Binary Tree
  • Depth First Traversals
    • PreOrder
    • InOrder
    • PostOrder
  • Breadth First Search / Level Order Traversal
    • Using Height Of Tree And Nodes At K Distance
    • Using Queue