登录
首页 » 数据结构 » 民航机票预订系统 结合MFC界面编程 具有订票、退票,客户及航班查询等功能。...

民航机票预订系统 结合MFC界面编程 具有订票、退票,客户及航班查询等功能。...

于 2023-01-09 发布 文件大小:78.53 kB
0 125
下载积分: 2 下载次数: 2

代码说明:

民航机票预订系统 结合MFC界面编程 具有订票、退票,客户及航班查询等功能。-airline tickets booking system combining MFC programming interface with booking, a refund, customer and flights query capabilities.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 链接
    数据结构 链表 按顺序合并两链表。 pa =1 2 4 7 9 11 16 pb= 1 6 9 23 24 36 1 1 2 4 6 7 9 11 16 23 24 36-link
    2022-02-02 15:42:46下载
    积分:1
  • Balance
    数据结构 Balance-Bi-Tree 数据结构 Balance-Bi-Tree 数据结构 Balance-Bi-Tr-data structure Balance- Bi-Tree data structure Balance- Bi-Tr ee data structure Balance- Bi-Tree data structure Balance- Bi-Tr
    2023-07-30 19:40:02下载
    积分:1
  • 中的八皇后问题
    数据结构中的八皇后问题-data structure of the eight Queen"s problems
    2023-03-27 07:55:03下载
    积分:1
  • 此程序为一个简单的oracle库程序,用于学生信息与课程成绩对应...
    此程序为一个简单的oracle数据库程序,用于学生信息与课程成绩对应-This procedure as a simple oracle database for student information and curriculum corresponding results
    2022-05-20 08:44:19下载
    积分:1
  • 一些c语言常用的算发,最近有程序设计比赛,也是比算法的,可以作为参考学习!...
    一些c语言常用的算发,最近有程序设计比赛,也是比算法的,可以作为参考学习!-some of the language used fat count, the recent design competition procedures, as well as the algorithm can be used as reference learning!
    2022-02-06 10:49:45下载
    积分:1
  • 学校管理系统
    本项目旨在提供有关安得拉邦学院的信息。安得拉邦是一个希望参加不同课程学习的人有越来越多机会的州。本网站旨在向这些人提供有关A.P舒适时尚的机会的信息。拉普拉德什政府的新教育政策
    2022-01-30 21:22:09下载
    积分:1
  • (1)输入E条弧<j,k>,建立AOE
    (1)输入E条弧,建立AOE-网的存储结构 (2)从源点v出发,令ve[0]=0,按拓扑排序求其余各项顶点的最早发生时间ve[i](1=2). (4)根据各顶点的ve和vl值,求每条弧s的最早发生时间e(s)和最迟开始时间l(s).若某条弧满足条件e(s)=l(s),则为关键活动.-(1) E importation of Arc lt; J, kgt; Establish AOE- network storage structure (2) v starting point source, ve [0] = 0, by topological sorting point for the rest of the earliest timing ve [i] (1LT ; = ilt; = n-1). if the Topography vertex orderly sequence number is less than net n vertices, a statement that net presence in Central, not for Critical Path, algorithm implementation steps to terminate or (3) (3) from the Department of v starting point, Vl [n-1] = ve [n-1], by the inverse order for the remaining topology of the latest occurrence of peak time Vl [i] (n-inversion; = IGT; = 2). (4) According to the apex of ve and Vl value for each s arc of the earliest timing e (s) and the latest starting time
    2022-03-20 01:39:05下载
    积分:1
  • ——链表(双向循环链表)
    双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed! ");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
    2022-02-14 07:06:11下载
    积分:1
  • 含并、交和差运算的集合类型试验报告,这个报告是做计算机试验的标准样式,分为了7个模块。...
    含并、交和差运算的集合类型试验报告,这个报告是做计算机试验的标准样式,分为了7个模块。-containing, intersection and poor computing pool type test report, the report is made to the standard computer test pattern, divided into seven modules.
    2023-03-02 05:40:03下载
    积分:1
  • 网络最短路径Dijkstra算法
    网络最短路径Dijkstra算法-network Dijkstra shortest path algorithm
    2022-09-22 06:40:03下载
    积分:1
  • 696518资源总数
  • 105714会员总数
  • 27今日下载