登录 注册
当前位置:主页 > 资源下载 > 21 > 设计数据结构课程中的最小生成树

设计数据结构课程中的最小生成树

  • 更新:2024-06-10 20:19:02
  • 大小:75KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:DOC

资源介绍

利用克鲁斯卡尔算法求网的最小生成树 typedef struct { int adj; int weight; }AdjMatrix[MAX][MAX]; typedef struct { AdjMatrix arc; int vexnum, arcnum; }MGraph;