293dd2e848
* Add vendor dir so builds dont require dep * Pin specific version go-eth version
72 lines
1.7 KiB
Go
Executable File
72 lines
1.7 KiB
Go
Executable File
// CookieJar - A contestant's algorithm toolbox
|
|
// Copyright 2013 Peter Szilagyi. All rights reserved.
|
|
//
|
|
// CookieJar is dual licensed: use of this source code is governed by a BSD
|
|
// license that can be found in the LICENSE file. Alternatively, the CookieJar
|
|
// toolbox may be used in accordance with the terms and conditions contained
|
|
// in a signed written agreement between you and the author(s).
|
|
|
|
// Package graph implements a simple graph data structure and supporting API to
|
|
// allow implementing graph alogirthms on top.
|
|
package graph
|
|
|
|
import (
|
|
"gopkg.in/karalabe/cookiejar.v2/collections/bag"
|
|
)
|
|
|
|
// Data structure for representing a graph.
|
|
type Graph struct {
|
|
nodes int
|
|
infos map[int]interface{}
|
|
edges []*bag.Bag
|
|
}
|
|
|
|
// Creates a new undirected graph.
|
|
func New(vertices int) *Graph {
|
|
g := &Graph{
|
|
nodes: vertices,
|
|
infos: make(map[int]interface{}),
|
|
edges: make([]*bag.Bag, vertices),
|
|
}
|
|
for i := 0; i < vertices; i++ {
|
|
g.edges[i] = bag.New()
|
|
}
|
|
return g
|
|
}
|
|
|
|
// Returns the number of vertices in the graph.
|
|
func (g *Graph) Vertices() int {
|
|
return g.nodes
|
|
}
|
|
|
|
// Assigns some data to a graph node.
|
|
func (g *Graph) Assign(id int, data interface{}) {
|
|
g.infos[id] = data
|
|
}
|
|
|
|
// Retrieves the data associated with a graph node.
|
|
func (g *Graph) Retrieve(id int) interface{} {
|
|
return g.infos[id]
|
|
}
|
|
|
|
// Connects two vertices of a graph (may be a loopback).
|
|
func (g *Graph) Connect(a, b int) {
|
|
g.edges[a].Insert(b)
|
|
if a != b {
|
|
g.edges[b].Insert(a)
|
|
}
|
|
}
|
|
|
|
// Disconnects two vertices of a graph (may be a loopback).
|
|
func (g *Graph) Disconnect(a, b int) {
|
|
g.edges[a].Remove(b)
|
|
if a != b {
|
|
g.edges[b].Remove(a)
|
|
}
|
|
}
|
|
|
|
// Executes a function for every neighbor of a vertex.
|
|
func (g *Graph) Do(v int, f func(interface{})) {
|
|
g.edges[v].Do(f)
|
|
}
|