Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DoublyLinkedList ¶
type DoublyLinkedList struct {
// contains filtered or unexported fields
}
双向链表
func NewDoublyLinkedList ¶
func NewDoublyLinkedList() *DoublyLinkedList
func (*DoublyLinkedList) Append ¶
func (this *DoublyLinkedList) Append(element interface{})
func (*DoublyLinkedList) Delete ¶
func (this *DoublyLinkedList) Delete(index int) interface{}
func (*DoublyLinkedList) Get ¶
func (this *DoublyLinkedList) Get(index int) *Node
func (*DoublyLinkedList) Insert ¶
func (this *DoublyLinkedList) Insert(index int, element interface{})
Click to show internal directories.
Click to hide internal directories.