Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ListStackInterface ¶
type ListStackInterface interface { // 栈是否为空 // @return bool IsEmpty() bool // 进栈操作 // @param interface{} Push(interface{}) // 出栈操作 // @return interface{} Pop() interface{} // 打印栈 Print() }
Click to show internal directories.
Click to hide internal directories.