-
oracle进行转换格式程序
oracle进行转换格式程序-format conversion process
- 2022-03-16 06:37:28下载
- 积分:1
-
VB6 ACCESS2000 including source codes and installation files,
VB6+ACCESS2000 包括源码和安装文件,-VB6 ACCESS2000 including source codes and installation files,
- 2022-03-23 22:02:43下载
- 积分:1
-
This is a fast string matching algorithm KMP algorithm, we can learn through thi...
这是一个字符串快速匹配的算法KMP算法,大家可以通过此算法的学习来提高自己的算法水平-This is a fast string matching algorithm KMP algorithm, we can learn through this algorithm to improve the level of their algorithm
- 2022-01-30 20:50:48下载
- 积分:1
-
miniSQL 的数据库设计
数据库系统设计课程作业设计并实现一个精简型单用户SQL引擎(DBMS)MiniSQL,允许用户通过字符界面输入SQL语句实现表的建立/删除;索引的建立/删除以及表记录的插入/删除/查找。 通过对MiniSQL的设计与实现,提高学生的系统编程能力,加深对数据库系统原理的理解。
- 2023-02-11 23:55:04下载
- 积分:1
-
最新收集得老外写的一个矩阵类,功能相当的强大,比以前的源码水平提高了不少,源码中有相当详细的英文注释,简单明了!...
最新收集得老外写的一个矩阵类,功能相当的强大,比以前的源码水平提高了不少,源码中有相当详细的英文注释,简单明了!-collected in the latest foreigner to write a matrix of type, quite powerful, the source than the level a lot, a significant source of detailed notes in English, simple!
- 2022-07-16 04:23:15下载
- 积分:1
-
遵循C和基本C++标准的Map类,移植来至MFC的MapPtrToPtr,可以在各种平台下使用,可以在各种编译器下编译。...
遵循C和基本C++标准的Map类,移植来至MFC的MapPtrToPtr,可以在各种平台下使用,可以在各种编译器下编译。-Follow the C and basic C++ Standard Map class, transplanted to the MFC
- 2022-12-26 06:10:03下载
- 积分:1
-
this code show how to use computer sole the poblem to piece image together
this code show how to use computer sole the poblem to piece image together-this code show how to use the computer sole p oblem to piece together image
- 2023-01-10 18:20:04下载
- 积分:1
-
在 php 中的网站类
在我的教室里,我学会了如何在 php 中使类。这就像在其他语言中的类。所以我分享我的课堂学习。
- 2022-08-07 21:33:00下载
- 积分: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
-
数据库转换工具。该工具可以自动转换为SQL语言
数据库转换工具。该工具可以自动转换为SQL语言-Database conversion tools. The tool can automatically convert SQL language. . . . .
- 2022-01-27 14:05:45下载
- 积分:1