Skip to content

Instantly share code, notes, and snippets.

@BogdanAriton
Created June 15, 2021 15:16
Show Gist options
  • Save BogdanAriton/a692415e53de3347579f99eea0492756 to your computer and use it in GitHub Desktop.
Save BogdanAriton/a692415e53de3347579f99eea0492756 to your computer and use it in GitHub Desktop.
struct Node
{
using node_ptr = std::unique_ptr<Node>;
Data data{}; // what we store
node_ptr next = nullptr; // link to the next element
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment