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