Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ChangeUser ¶
func ChangeUser()
Types ¶
type LinkedList ¶
type LinkedList struct {
// contains filtered or unexported fields
}
LinkedList 是一个链表
func (*LinkedList) Append ¶
func (l *LinkedList) Append(val any)
func (*LinkedList) Delete ¶
func (l *LinkedList) Delete(index int)
type LinkedListV1 ¶
type LinkedListV1[T any] struct { // contains filtered or unexported fields }
func (*LinkedListV1[T]) Add ¶
func (l *LinkedListV1[T]) Add(index int, val T)
func (*LinkedListV1[T]) Append ¶
func (l *LinkedListV1[T]) Append(val T)
func (*LinkedListV1[T]) Delete ¶
func (l *LinkedListV1[T]) Delete(index int)
Click to show internal directories.
Click to hide internal directories.