文件名称:afafa

  • 所属分类:
  • 其他小程序
  • 资源属性:
  • [Text]
  • 上传时间:
  • 2016-12-04
  • 文件大小:
  • 1kb
  • 下载次数:
  • 0次
  • 提 供 者:
  • 王*
  • 相关连接:
  • 下载说明:
  • 别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容均来自于网络,请自行研究使用

本实验实现邻接表表示下无向图的广度优先遍历。



程序的输入是图的顶点序列和边序列(顶点序列以*为结束标志,边序列以-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

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度更多...
  • 请直接用浏览器下载本站内容,不要使用迅雷之类的下载软件,用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*主  题:
*内  容:
*验 证 码:

源码中国 www.ymcn.org