文件名称:afafa
-
所属分类:
- 标签属性:
- 上传时间:2016-12-04
-
文件大小:733byte
-
已下载:1次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
本实验实现邻接表表示下无向图的广度优先遍历。
程序的输入是图的顶点序列和边序列(顶点序列以*为结束标志,边序列以-1,-1为结束标志)。程序的输出为图的邻接表和广度优先遍历序列。例如:
程序输入为:
a
b
c
d
e
f
*
0,1
0,4
1,4
1,5
2,3
2,5
3,5
-1,-1
程序的输出为:
the ALGraph is
a 4 1
b 5 4 0
c 5 3
d 5 2
e 1 0
f 3 2 1
the Breadth-First-Seacrh list:aebfdc
-In this experiment, the adjacency list shows the breadth first traversal of undirected graph.
The input of the program is the sequence of vertices and edges of the graph (the end of the vertex sequence is a symbol, and the edge sequence is-1,-1 is the end symbol). The output of the program is the adjacency list and the breadth first traversal sequence. For example:
Program input:
A
B
C
D
E
F
*
0,1
0,4
1,4
1,5
2,3
2,5
3,5
-1,-1
The output of the program is:
ALGraph is the
A 41
B 540
C 53
D 52
E 10
F 321
Breadth-First-Seacrh list:aebfdc the
程序的输入是图的顶点序列和边序列(顶点序列以*为结束标志,边序列以-1,-1为结束标志)。程序的输出为图的邻接表和广度优先遍历序列。例如:
程序输入为:
a
b
c
d
e
f
*
0,1
0,4
1,4
1,5
2,3
2,5
3,5
-1,-1
程序的输出为:
the ALGraph is
a 4 1
b 5 4 0
c 5 3
d 5 2
e 1 0
f 3 2 1
the Breadth-First-Seacrh list:aebfdc
-In this experiment, the adjacency list shows the breadth first traversal of undirected graph.
The input of the program is the sequence of vertices and edges of the graph (the end of the vertex sequence is a symbol, and the edge sequence is-1,-1 is the end symbol). The output of the program is the adjacency list and the breadth first traversal sequence. For example:
Program input:
A
B
C
D
E
F
*
0,1
0,4
1,4
1,5
2,3
2,5
3,5
-1,-1
The output of the program is:
ALGraph is the
A 41
B 540
C 53
D 52
E 10
F 321
Breadth-First-Seacrh list:aebfdc the
(系统自动生成,下载前可以参看下载内容)
下载文件列表
afafa.txt
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.