摘要: 图的深度优先和广度优先算法。。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 数据结构{ public class Program { public class MatrixGraph { public string[] DingDian;//保存顶点信息 public int[,] edges;//保存边信息 public bool[] isTrav; ... 阅读全文
posted @ 2013-10-11 21:56 wj704 阅读(206) 评论(0) 推荐(0) 编辑