-
解N元一次方程,从文件读入整数 N, 然后读入N*( N+1)矩阵,得到解并输出到文件中。...
解N元一次方程,从文件读入整数 N, 然后读入N*( N+1)矩阵,得到解并输出到文件中。-Solution of N-linear equation, reading from a file into an integer N, and then read into the N* (N+1) matrix obtained solution and the output to a file.
- 2023-07-04 21:35:03下载
- 积分:1
-
一些数据结构源代码
一些数据结构源代码-some data structure source code
- 2022-02-03 18:29:28下载
- 积分:1
-
各种数据整合,使用与各种数据库的整合,,各种数据整合
各种数据整合,使用与各种数据库的整合,,各种数据整合-A variety of data integration, use and integration of various databases, a variety of data integration
- 2022-03-10 02:06:46下载
- 积分:1
-
wce4.0,database,
wce4.0,database,- wce4.0,database
- 2023-04-05 13:20:04下载
- 积分:1
-
复杂的VB OPC自动化的例子
Complex VB OPC Automation Example
- 2022-01-25 21:04:57下载
- 积分: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
-
动态数组的实现
该工程是动态数组的实现,其中已经1. 实现了异常处理模块(C语言实现,非C++);2. 实现了内存管理模块,可以很轻松的申请内存,释放内存;3. 实现了动态数组的创建、释放等操作欢迎下载,欢迎回复
- 2022-10-28 19:20:03下载
- 积分:1
-
VC 连接 SQL的例子
VC 连接 SQL的例子-an example of connecting sql by vc
- 2022-02-12 14:24:08下载
- 积分:1
-
题目:设有一航班售票系统,要求完成以下功能:
1)假设该民航有若干航班,要求实现增加航班和取消某个航班的功能。
2)查询:根据用户提出的终到站查询航班号...
题目:设有一航班售票系统,要求完成以下功能:
1)假设该民航有若干航班,要求实现增加航班和取消某个航班的功能。
2)查询:根据用户提出的终到站查询航班号、售票情况等航班信息;也可根据航班号,列出该航班已订票的乘客名单。
3)订票:根据航班号为客户订票,如该航班有余票,则为客户订票;如该航班已满员,则显示相应信息。
4)退票:按乘客要求退出已预定的机票。
-Topic: First flight with the ticketing system, required to complete the following functions: 1) It is assumed that the Civil Aviation have a number of flights, calls for increased flights and cancellation of a flight functions. 2) query: Based on user queries raised by the end of the arrival flight number, booking flight information, etc. also available under the flight number, listed in the flight
- 2022-03-15 20:32:52下载
- 积分:1
-
data structures between 2:00 judgment whether a simple path and determine whethe...
数据结构里的判断两点之间是否有简单路径和判断是否有简单回路,用vc6.0编写-data structures between 2:00 judgment whether a simple path and determine whether there is any simple circuit, prepared with vc6.0
- 2022-01-25 15:57:18下载
- 积分:1