• 大小: 7.68KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: C/C++
  • 标签: c  

资源简介


学历进修需要学生在一定的时间内完成一定的课程学习,每一门课有一定的学分,修满学分,可获取相应的学历。因为有些课程内容是另一些课程的学习基础,所以课程学习之间存有一定的先后次序

资源截图

代码片段和文件信息

#include
 #include
 #include // malloc()等
 #include // INT_MAX等
 #include // EOF(=^Z或F6)NULL
 #include // atoi()52
 #include // eof()
 #include // floor()ceil()abs()
 #include // exit()
 #include // coutcin
 // 函数结果状态代码
 #define TRUE 1
 #define FALSE 0
 #define OK 1
 #define ERROR 0
 #define INFEASIBLE -1
 typedef int Status; // Status是函数的类型其值是函数结果状态代码,如OK等
 typedef int Boolean; // Boolean是布尔类型其值是TRUE或FALSE
 #define MAX_NAME 10 
 /* 顶点字符串的最大长度*/
 #define MAXCLASS 100
 using namespace std;
 int Z=0;
 int X=0;
 int xqzsq=1xfsx;
 typedef int InfoType;
 typedef char VertexType[MAX_NAME]; /* 字符串类型*/
 /* 图的邻接表存储表示*/
 #define MAX_VERTEX_NUM 100
 typedef enum{DG}GraphKind; /* {有向图有向网无向图无向网} */
 typedef struct ArcNode
 {
   int adjvex; /* 该弧所指向的顶点的位置*/
   struct ArcNode *nextarc; /* 指向下一条弧的指针*/
   InfoType *info; /* 网的权值指针)*/
 }ArcNode; /* 表结点*/
 typedef st

评论

共有 条评论