recursive

package
v1.2.0 Latest Latest
Warning

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

Go to latest
Published: Jul 15, 2026 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BinaryTree

type BinaryTree struct {
	Left  *BinaryTree `json:"left,omitempty"`
	Right *BinaryTree `json:"right,omitempty"`
	Value float64     `json:"value"`
}

type Graph

type Graph struct {
	Edges []GraphEdgesItem `json:"edges,omitempty"`
	ID    *string          `json:"id,omitempty"`
}

type GraphEdgesItem

type GraphEdgesItem struct {
	Target Graph    `json:"target"`
	Weight *float64 `json:"weight,omitempty"`
}

type LinkedListNode

type LinkedListNode struct {
	Data int             `json:"data"`
	Next *LinkedListNode `json:"next,omitempty"`
}

type MutualA

type MutualA struct {
	B    *MutualB `json:"b,omitempty"`
	Name string   `json:"name"`
}

type MutualB

type MutualB struct {
	A    *MutualA `json:"a,omitempty"`
	Name string   `json:"name"`
}

type TreeNode

type TreeNode struct {
	Children []TreeNode `json:"children,omitempty"`
	Value    string     `json:"value"`
}

Jump to

Keyboard shortcuts

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