15、vateintCurrentVertices;//现有顶点数//构造函数:建立空的邻接矩阵2.【主要成员方法说明】publicGraph():为定义的构造函数,建立空的邻接矩阵。publicintFindVertex(charvertex):查找指定的顶点的序号publicbooleanIsGraphEmpty():判断图是否为空。 public boolean IsGraphFull ( ):判断图是否为满。 public char GetValue ( int i ):按顶点序号返回顶点数据。
16、 public int NumberOfVertices ( ):返回图的顶点数。 public int NumberOfEdges ( ):返回图的边数。 publicdoubleGetWeight(intv1,intv2):取得一条边的权值。publicintGetFirstNeighbor(intv):取得第一个邻接点的序号public int InsertVertex ( char v