-
-
Save AahanSingh/39053a1405b92422bbdf9a47f10936a3 to your computer and use it in GitHub Desktop.
Linked List - Data Structure
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
type Node struct { | |
Data int | |
Next *Node | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment