Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LinkedListStack ¶
type LinkedListStack struct {
// contains filtered or unexported fields
}
func Constructor ¶
func Constructor() *LinkedListStack
func (*LinkedListStack) GetSize ¶
func (this *LinkedListStack) GetSize() int
func (*LinkedListStack) IsEmpty ¶
func (this *LinkedListStack) IsEmpty() bool
func (*LinkedListStack) Peek ¶
func (this *LinkedListStack) Peek() interface{}
func (*LinkedListStack) Pop ¶
func (this *LinkedListStack) Pop() interface{}
func (*LinkedListStack) Push ¶
func (this *LinkedListStack) Push(e interface{})
func (*LinkedListStack) String ¶
func (this *LinkedListStack) String() string
Click to show internal directories.
Click to hide internal directories.