Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LinkStack ¶
type LinkStack struct {
// contains filtered or unexported fields
}
func NewLinkStack ¶
func NewLinkStack() *LinkStack
type SequentialStack ¶
type SequentialStack struct {
// contains filtered or unexported fields
}
func NewSequentialStack ¶
func NewSequentialStack() *SequentialStack
func (*SequentialStack) Len ¶
func (this *SequentialStack) Len() int
func (*SequentialStack) Peek ¶
func (this *SequentialStack) Peek() interface{}
func (*SequentialStack) Pop ¶
func (this *SequentialStack) Pop() interface{}
func (*SequentialStack) Push ¶
func (this *SequentialStack) Push(x interface{})
Click to show internal directories.
Click to hide internal directories.