linkedlist

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 1, 2025 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ICircular

type ICircular interface {
	AddToStart(data int)
	AddToSequentially(data int)
	AddToAfter(data, which int)
	AddToEnd(data int)
	Delete(data int) error
	List() []int
	Print()
}

func Circular

func Circular(data int) ICircular

type IDouble

type IDouble interface {
	AddToStart(data int)
	AddToSequentially(data int)
	AddToAfter(data, which int)
	AddToEnd(data int)
	Delete(data int) error
	List(reverse bool) []int
	Print(reverse bool)
}

func Double

func Double(data int) IDouble

type ILinear

type ILinear interface {
	AddToStart(data int)
	AddToSequentially(data int)
	AddToAfter(data, which int) error
	AddToEnd(data int)
	Delete(data int) error
	Search(data int) bool
	List() []int
	Print()
}

func Linear

func Linear(data int) ILinear

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL