Skip to content

Instantly share code, notes, and snippets.

@chidumennamdi
Created September 11, 2018 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chidumennamdi/0586f14391e17ac7e52bf1945977489e to your computer and use it in GitHub Desktop.
Save chidumennamdi/0586f14391e17ac7e52bf1945977489e to your computer and use it in GitHub Desktop.
// heap-inl.h
struct heap_node {
struct heap_node* left;
struct heap_node* right;
struct heap_node* parent;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment