Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ComplexListNode ¶
type ComplexListNode struct {
Val int
Next *ComplexListNode
Sibling *ComplexListNode
}
type DoublyTreeNode ¶
type DoublyTreeNode struct {
Data Object
Father *DoublyTreeNode
LeftChild *DoublyTreeNode
RightChild *DoublyTreeNode
}
双向树
func NewDoublyTreeNode ¶
func NewDoublyTreeNode(data Object) *DoublyTreeNode
Click to show internal directories.
Click to hide internal directories.