登录
首页 » 数据结构 » 航空售票系统

航空售票系统

于 2022-07-02 发布 文件大小:11.53 kB
0 225
下载积分: 2 下载次数: 1

代码说明:

航空售票系统- Aviation booking system

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

发表评论

0 个回复

  • c语言编码技术介绍
    c语言编码技术介绍-Technology
    2023-07-28 03:15:05下载
    积分:1
  • VC how to operate the database of images field
    VC编程中如何操作数据库中的图像字段-VC how to operate the database of images field
    2023-06-20 07:00:03下载
    积分:1
  • 聊天工具
    本程序是一个了聊天工具  用mfc编写  可以多人同时聊天,用tcp协议编写                     
    2022-10-28 00:00:04下载
    积分:1
  • VB图书管理系统,基于VB的图书管理系统的程序开发,只作参考...
    VB图书管理系统,基于VB的图书管理系统的程序开发,只作参考-VB library management system, library management system based on the VB-program development, only for reference
    2023-01-25 21:15:03下载
    积分:1
  • BM关键字查找算法,在用于查找子字符串的算法当中,BM(Boyer...
    BM关键字查找算法,在用于查找子字符串的算法当中,BM(Boyer-Moore)算法是目前相当有效又容易理解的一种,一般情况下,比KMP算法快3-5倍。-BM keyword search algorithm used in the sub-string search algorithm which, BM (Boyer-Moore) algorithm is quite effective and easy to understand A, under normal circumstances, more than 3-5 times the KMP algorithm quickly.
    2022-03-10 14:08:21下载
    积分: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
  • with eyes turned to the mouse control
    跟着鼠标转的眼睛控-with eyes turned to the mouse control
    2022-03-04 02:17:09下载
    积分:1
  • 的最长单调序列,字符串比较,燃料问题和knapsa…
    最长单调子序列、字符串比较、加油问题及背包问题的算法分析及求解-The longest monotone subsequence, string comparison, the fuel problem and knapsack problem analysis and solving algorithms
    2022-03-18 15:32:58下载
    积分:1
  • Variable postfix infix expression evaluation: Enter the expression,# to end the...
    中缀变后缀表达式求值:输入表达式,#为结束符(如1+2#),程序会自动给出后缀表达式,并给出最终计算结果。程序中部分地方有注释-Variable postfix infix expression evaluation: Enter the expression,# to end the character (eg, 1+2#), the program will automatically give postfix expression, and gives the end result. Some parts of the program annotated
    2022-05-29 12:56:14下载
    积分:1
  • rPm库的安装包 很好的希望大家喜欢有帮助的
    rPm数据库的安装包 很好的希望大家喜欢有帮助的-rpm database of installed packages good hope that we like to have help
    2022-02-18 17:06:10下载
    积分:1
  • 696518资源总数
  • 106161会员总数
  • 5今日下载