Skip to content

Instantly share code, notes, and snippets.

@billhance
Last active October 31, 2017 00:47
Show Gist options
  • Save billhance/5e83b0c673f7ed8812e4271756a010bc to your computer and use it in GitHub Desktop.
Save billhance/5e83b0c673f7ed8812e4271756a010bc to your computer and use it in GitHub Desktop.

Career

Algorithms

Big O Notation

Books

Warmup

Bitwise Operations

Depth First Search

Dynamic Programming

Interview Questions

Whiteboarding

Projects

API's

Libraries

Algorithms

Trees

Binary Tree

Binary Tree

Rules
  • The left subtree of a node contains only nodes with keys less than the node’s key.
  • The right subtree of a node contains only nodes with keys greater than the node’s key.
  • The left and right subtree each must also be a binary search tree.
  • There must be no duplicate nodes.
Links
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment