Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LinkedList ¶
type LinkedList struct { Head *Node // contains filtered or unexported fields }
func NewLinkedList ¶
func NewLinkedList(capacity int) *LinkedList
func (*LinkedList) GetLen ¶
func (L *LinkedList) GetLen() int
func (*LinkedList) Insert ¶
func (l *LinkedList) Insert(val interface{}) error
func (*LinkedList) Remove ¶
func (L *LinkedList) Remove(val interface{}) error
Click to show internal directories.
Click to hide internal directories.