graph

package
v1.14.0 Latest Latest
Warning

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

Go to latest
Published: Feb 28, 2022 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsAcyclic

func IsAcyclic(g Graph) (bool, []int)

IsAcyclic uses depth-first search to find cycles in a generic graph represented by Graph interface. If a cycle is found, it returns a list of nodes that are in the cyclic path, identified by their orders.

Types

type Graph

type Graph interface {
	// Order returns the total number of nodes in the graph
	Order() int

	// EdgesFrom returns a list of integers that each
	// represents a node that has an edge from node u.
	EdgesFrom(u int) []int
}

Graph represents a simple interface for representation of a directed graph. It is assumed that each node in the graph is uniquely identified with an incremental positive integer (i.e. 1, 2, 3...). A value of 0 for a node represents a sentinel error value.

Jump to

Keyboard shortcuts

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