Skip to content

Instantly share code, notes, and snippets.

@AahanSingh
Last active July 11, 2021 06:23
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/eb2db66932fa434a313d4a134bdf7400 to your computer and use it in GitHub Desktop.
Save AahanSingh/eb2db66932fa434a313d4a134bdf7400 to your computer and use it in GitHub Desktop.
Array Based Stack Data Structure.
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