1. 首页
  2. 人工智能
  3. 搜索引擎
  4. 数据结构C语言实现图的建立图的广度深度遍历.doc

数据结构C语言实现图的建立图的广度深度遍历.doc

上传者: 2020-12-12 10:45:00上传 DOC文件 72KB 热度 13次
. 范文 图的建立图的广度深度遍历 #include "stdio.h" #define maxsize 1000 # define n 100 typedef struct { char vexs[n] ; int arcs[n][n] ; int num ; }G; typedef struct { int data[maxsize]; int front,rear; } V; void G
用户评论