293dd2e848
* Add vendor dir so builds dont require dep * Pin specific version go-eth version
42 lines
963 B
Go
Executable File
42 lines
963 B
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_test
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"gopkg.in/karalabe/cookiejar.v2/graph"
|
|
)
|
|
|
|
// Creates a simple graph, and prints the degree of each vertex.
|
|
func Example_usage() {
|
|
// Create a star shaped 5 vertex graph
|
|
g := graph.New(5)
|
|
g.Connect(0, 2)
|
|
g.Connect(0, 3)
|
|
g.Connect(1, 3)
|
|
g.Connect(1, 4)
|
|
g.Connect(2, 4)
|
|
|
|
// For each vertex, count the outgoing edges
|
|
for v := 0; v < g.Vertices(); v++ {
|
|
degree := 0
|
|
g.Do(v, func(peer interface{}) {
|
|
degree++
|
|
})
|
|
fmt.Printf("%v: %v\n", v, degree)
|
|
}
|
|
// Output:
|
|
// 0: 2
|
|
// 1: 2
|
|
// 2: 2
|
|
// 3: 2
|
|
// 4: 2
|
|
}
|