-
-
Save AahanSingh/a76f53e817cec5979638fba98dd86804 to your computer and use it in GitHub Desktop.
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