Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active April 13, 2018 10:20
Show Gist options
  • Save deque-blog/c570d544f7c750d9095f1696affd6862 to your computer and use it in GitHub Desktop.
Save deque-blog/c570d544f7c750d9095f1696affd6862 to your computer and use it in GitHub Desktop.
template<typename T>
struct Node {
T content;
Node<T>* next;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment