Created
August 15, 2020 13:55
-
-
Save omonimus1/6c4bc374e5c77e20bdc10bbff8db6c2b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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