2016年11月27日

用邻接表实现某个点入度和出度

摘要: #include #include #include using namespace std; typedef struct node{//邻接表上的节点 int n; struct node * next; } GNode; typedef struct graph{//图的整个结构 int cn;//顶点个数 int bn;//边的个数 G... 阅读全文

posted @ 2016-11-27 11:39 acmtime 阅读(2737) 评论(0) 推荐(0) 编辑

导航