-
-
Save AahanSingh/eb2db66932fa434a313d4a134bdf7400 to your computer and use it in GitHub Desktop.
Array Based Stack 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 Stack struct { | |
capacity int | |
top int | |
data []int | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment