• 大小: 149KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-04
  • 语言: C/C++
  • 标签: C++  

资源简介

C++模拟全国交通咨询

资源截图

代码片段和文件信息

#define MAX_VERTEX_NUM 18
#define NULL 0
#define MAX_ARC_SIZE 100
#define MAX_ROUTE_NUM 5
#include“stdio.h“
#include“stdlib.h“
#include“string.h“
#include“conio.h“
#define False 0
#define True 1
#define INFINITY 10000
typedef struct
{int number;
 float expenditure;
 int begintime[2];
 int arrivetime[2];
}Vehide;
typedef struct
{Vehide stata[MAX_ROUTE_NUM];
 int last;//最后一个记录的位置 
}infolist;
typedef struct ArcNode
{int adjvex;
 struct ArcNode *nextarc;
 infolist info;
}ArcNode;
typedef struct VNode
{char cityname[10];
 ArcNode *planefirstarc*trainfirstarc;
}VNodeAdjList[MAX_VERTEX_NUM];
typedef struct
{AdjList vertices;
 int vexnumplanearcnumtrainarcnum;
}ALGraph;
typedef struct Node
{int adjvex;
 int route;
 struct Node *next;
}Node;
typedef struct

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      52948  2014-12-20 11:33  055040王立峰模拟全国交通咨询\模拟全国交通咨询\源代码\模拟全国交通咨询.cpp

     文件     429056  2014-12-20 11:32  055040王立峰模拟全国交通咨询\模拟全国交通咨询\模拟全国交通咨询.doc

     目录          0  2009-10-17 15:18  055040王立峰模拟全国交通咨询\模拟全国交通咨询\源代码

     目录          0  2009-10-17 15:24  055040王立峰模拟全国交通咨询\模拟全国交通咨询

     目录          0  2014-12-20 01:05  055040王立峰模拟全国交通咨询

----------- ---------  ---------- -----  ----

               482004                    5


评论

共有 条评论