Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BinaryTree ¶
type BinaryTree struct {
Left *BinaryTree `json:"left,omitempty"`
Right *BinaryTree `json:"right,omitempty"`
Value float64 `json:"value"`
}
type Graph ¶
type Graph struct {
Edges []GraphEdgesItem `json:"edges,omitempty"`
ID *string `json:"id,omitempty"`
}
type GraphEdgesItem ¶
type LinkedListNode ¶
type LinkedListNode struct {
Data int `json:"data"`
Next *LinkedListNode `json:"next,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.