首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴WS丶libre的代码贴全部
#include<stdio.h>
#include<string.h>
#define N 3   //酒杯数
#define MAX_SIZES 100  //状态表中的最大状态数


 typedef struct node //边节点
{
    int adjvex;   //邻接点的位置
    node*next;  //指向下一个节点
}ARCNODE;  //邻接表中的结点类型

......................
阅读全部 | 2017年5月4日 10:39
1
WS丶libre