Skip to content

Instantly share code, notes, and snippets.

@karellism
Created February 28, 2019 09:05
Show Gist options
  • Save karellism/f6a7fbf79f4f1a39a6d4c27a03610822 to your computer and use it in GitHub Desktop.
Save karellism/f6a7fbf79f4f1a39a6d4c27a03610822 to your computer and use it in GitHub Desktop.
Linked list example in C/C++
// A linked list node
struct ListNode
{
int val;
struct ListNode *next;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment