feat(stack): implement stack in golang code

This commit is contained in:
reanon
2022-11-29 01:09:12 +08:00
parent 67409cdb12
commit 27e4402eca
4 changed files with 263 additions and 0 deletions

View File

@ -0,0 +1,18 @@
// File: stack.go
// Created Time: 2022-11-26
// Author: Reanon (793584285@qq.com)
package chapter_stack_and_queue
type Stack interface {
// Push 元素入栈
Push(num int)
// Peek 访问栈顶元素
Peek() int
// Pop 元素出栈
Pop() int
// Size 栈的长度
Size() int
// IsEmpty 栈是否为空
IsEmpty() bool
}