Documentation
¶
Index ¶
- type BST
- func (this *BST) Add(e interface{})
- func (this *BST) Contains(e interface{}) bool
- func (this *BST) GetSize() int
- func (this *BST) InOrder()
- func (this *BST) IsEmpty() bool
- func (this *BST) Maximum() interface{}
- func (this *BST) Minimum() interface{}
- func (this *BST) PostOrder()
- func (this *BST) PreOrder()
- func (this *BST) Remove(e interface{})
- func (this *BST) RemoveMax() interface{}
- func (this *BST) RemoveMin() interface{}
- func (this *BST) String() string
- type Node
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BST ¶
type BST struct {
// contains filtered or unexported fields
}
func Constructor ¶
func Constructor() *BST
Click to show internal directories.
Click to hide internal directories.