package
2.3.3
Repository: https://github.com/duke-git/lancet.git
Documentation: pkg.go.dev

# Packages

Package datastructure implements some data structure.
Package datastructure implements some data structure.
Package datastructure contains some data structure.
Package datastructure contains some data structure.
No description provided by the author
Package datastructure contains some data structure.
Package datastructure contains some data structure.
Package datastructure contains some data structure.
Package datastructure contains some data structure.

# Functions

NewLinkNode return a LinkNode pointer.
NewQueueNode return a QueueNode pointer.
NewStackNode return a StackNode pointer.
NewTreeNode return a TreeNode pointer.

# Structs

LinkNode is a linkedlist node, which have a Value and Pre points to previous node, Next points to a next node of the link.
QueueNode is a node in a queue, which have a Value and Next pointer points to next node in the queue.
StackNode is a node in stack, which have a Value and Next pointer points to next node in the stack.
TreeNode is node of tree.