Skip to content

Instantly share code, notes, and snippets.

@tophyr
Created May 8, 2019 18:54
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 tophyr/c0eca2f02719f6a631c0a6d8337ceac7 to your computer and use it in GitHub Desktop.
Save tophyr/c0eca2f02719f6a631c0a6d8337ceac7 to your computer and use it in GitHub Desktop.
template<size_t kDepth>
struct Tree {
Tree<kDepth - 1> left_;
Tree<kDepth - 1> right_;
};
template<>
struct Tree<0> {
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment