/LinkedListStack.go Secret
Last active
July 14, 2021 16:11
Star
You must be signed in to star a gist
LinkedListStack.go
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
// In the repo, the linkedlist package holds the implementation | |
// of the linked list data structure and its operations. | |
// In Go, modules add packages are referenced via their path. | |
import "github.com/aahansingh/data-structures-with-go/linkedlist" | |
type stack struct { | |
top *linkedlist.Node | |
stackSize int | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment