mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 22:16:29 +08:00
29 lines
678 B
Go
29 lines
678 B
Go
|
// File: graph_dfs_test.go
|
|||
|
// Created Time: 2023-02-18
|
|||
|
// Author: Reanon (793584285@qq.com)
|
|||
|
|
|||
|
package chapter_graph
|
|||
|
|
|||
|
import (
|
|||
|
"fmt"
|
|||
|
"testing"
|
|||
|
|
|||
|
. "github.com/krahets/hello-algo/pkg"
|
|||
|
)
|
|||
|
|
|||
|
func TestGraphDFS(t *testing.T) {
|
|||
|
/* 初始化無向圖 */
|
|||
|
vets := ValsToVets([]int{0, 1, 2, 3, 4, 5, 6})
|
|||
|
edges := [][]Vertex{
|
|||
|
{vets[0], vets[1]}, {vets[0], vets[3]}, {vets[1], vets[2]},
|
|||
|
{vets[2], vets[5]}, {vets[4], vets[5]}, {vets[5], vets[6]}}
|
|||
|
graph := newGraphAdjList(edges)
|
|||
|
fmt.Println("初始化後,圖為:")
|
|||
|
graph.print()
|
|||
|
|
|||
|
/* 深度優先走訪 */
|
|||
|
res := graphDFS(graph, vets[0])
|
|||
|
fmt.Println("深度優先走訪(DFS)頂點序列為:")
|
|||
|
PrintSlice(VetsToVals(res))
|
|||
|
}
|