Skip to content

Instantly share code, notes, and snippets.

@AahanSingh
Created July 3, 2021 10:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AahanSingh/4b6128e5f337c8407a5e5fe49ac9e5f0 to your computer and use it in GitHub Desktop.
Save AahanSingh/4b6128e5f337c8407a5e5fe49ac9e5f0 to your computer and use it in GitHub Desktop.
Doubly Linked List Structure.
type DLNode struct {
Data int
Prev *DLNode
Next *DLNode
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment