Skip to content

Instantly share code, notes, and snippets.

@omonimus1
Created August 15, 2020 13:55
Show Gist options
  • Save omonimus1/6c4bc374e5c77e20bdc10bbff8db6c2b to your computer and use it in GitHub Desktop.
Save omonimus1/6c4bc374e5c77e20bdc10bbff8db6c2b to your computer and use it in GitHub Desktop.
// Single Linked List
struct node
{
int data;
struct node *next;
}
// Double linked list
struct Node
{
int data;
struct Node *next, *prev;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment