-
是基于C#语言的一个学生管理系统数据库系统开发案例.很实用...
是基于C#语言的一个学生管理系统数据库系统开发案例.很实用-Is based on the C# Language a student management system database system development case. Very practical
- 2022-01-24 18:52:32下载
- 积分: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
-
实用的SQLite C++封装类
SQLite的封装类,简单实用,支持常用操作!
自己感觉封装的不错,运行平台有:windows、linux、unix。
如果有什么问题和建议,请邮件yin0123@sina.com
- 2022-11-08 15:15:03下载
- 积分:1
-
咖啡厅和餐厅
此应用程序是设计用来管理客户端服务器应用程序-基于数据库的咖啡馆。设计建成使用 PHP 的服务器和客户端移动机器人的应用程序。
- 2022-12-21 17:10:04下载
- 积分:1
-
The use of VB to read and write through the 24C02 single
利用VB通过串口控制单片机读写24C02源代码程序-The use of VB to read and write through the 24C02 single-chip serial port control program source code
- 2022-02-16 01:11:50下载
- 积分:1
-
随着旅游业的发展,酒店、餐饮娱乐行业日趋发达,引入全方位的电脑服务和电脑管理日益流行。同时,酒店和餐厅娱乐业引入电脑服务和管理也取得了优良的经济效益和社会效益。...
随着旅游业的发展,酒店、餐饮娱乐行业日趋发达,引入全方位的电脑服务和电脑管理日益流行。同时,酒店和餐厅娱乐业引入电脑服务和管理也取得了优良的经济效益和社会效益。为此,国家建设部已于最近作出明确规定:凡星级酒店在项目审批时,其设计方案必须包括电脑管理系统,否则不予立项。可见,酒店管理电脑化势在必行。酒店管理系统将先进的电脑技术与现代酒店服务管理完美地结合起来,实现了住宿、餐饮、娱乐全新概念的服务和管理方式。-With the development of tourism, hotel, restaurant, and entertainment industries increasingly developed, the introduction of comprehensive computer services and computer management is increasingly popular. Meanwhile, hotels and restaurants to introduce computer entertainment services and management has made good economic and social benefits. Therefore, the Ministry of Construction has recently made clear : all-star hotels in the project"s approval, its design must include computer management system, otherwise, not creation. Visibility, hotel management computerized inevitable. Hotel management system of advanced computer technology with modern hotel management services to the perfect combination to achieve accommodation, catering, entertainment brand new concept of service and man
- 2022-01-21 23:04:47下载
- 积分:1
-
C2C电子商务二手交易网站
资源描述一、安装说明:
1.将文件解压后上传至网站服务器目录下,通过web页面即可正常访问。
2.通过/admin/login.asp进入后台管理,管理员账号和密码均为admin
3.数据库位于/datum 下面#SecondHand.mdb,为了安全,其名称可以进行必要的修改。
相关文件为conn.asp,位于根目录和/admin中均有。
二、系统参数说明:
1.运行环境:Windows+IIS
2.开发语言:asp
3.数据库:access 2000
- 2022-09-24 07:25:03下载
- 积分:1
-
数据结构课程设计,C语言,其中包含两则,一个是单链表的基本操作,500条语句,另外一个200条,是利用堆栈进行多种运算,均有报告...
数据结构课程设计,C语言,其中包含两则,一个是单链表的基本操作,500条语句,另外一个200条,是利用堆栈进行多种运算,均有报告-Curriculum design, data structures, C language, which contains two, one is the basic operation of a single linked list, 500 statements, while a 200 is the use of the stack for a variety of operations, are being reported
- 2022-04-07 12:48:23下载
- 积分:1
-
顺序表类型的实现,数据结构清华大学严老师C语言第二版算法。...
顺序表类型的实现,数据结构清华大学严老师C语言第二版算法。-order to achieve the type of data structure Tsinghua University teachers strict version of the second C-language algorithm.
- 2022-09-28 02:05:03下载
- 积分:1
-
此程序包括三部分,通讯,数据库,和界面设计。是一个常用的工业测控用的程序。...
此程序包括三部分,通讯,数据库,和界面设计。是一个常用的工业测控用的程序。-This procedure consists of three parts, communications, databases, and interface design. Is a commonly used in industrial monitoring and control proceedings.
- 2023-06-12 01:10:03下载
- 积分:1