Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SqStack ¶
type SqStack struct {
// contains filtered or unexported fields
}
SqStack 顺序栈,数组实现
type SqStackInterface ¶
type SqStackInterface interface { // 栈是否为空 // @return bool IsEmpty() bool // 进栈操作 // @param interface{} Push(interface{}) // 出栈操作 // @return interface{} Pop() interface{} // 打印栈 Print() }
Click to show internal directories.
Click to hide internal directories.