-
各种数据库语法,如 Oracle、DB2、Informix、MySql、Postgre
各种数据库语法,如 Oracle、DB2、Informix、MySql、Postgre-Syntax of various databases such as Oracle, DB2, Informix, MySql, Postgre
- 2022-03-20 07:32:02下载
- 积分:1
-
pb9开发的万能查询源码,相当好用
pb9开发的万能查询源码,相当好用-pb9 development of the omnipotent source inquiries, very handy.
- 2022-07-12 14:30:06下载
- 积分:1
-
I downloaded from the Internet on a DataGrid procedures.
我从网上下载的一个关于DataGrid的程序。-I downloaded from the Internet on a DataGrid procedures.
- 2022-08-03 20:05:12下载
- 积分:1
-
本程序用于数据结构中关于图部分的广度优先搜索和深度优先搜索。...
本程序用于数据结构中关于图部分的广度优先搜索和深度优先搜索。-This procedure for the data structure on the map part of the breadth-first search and depth-first search.
- 2023-03-28 18:05:04下载
- 积分:1
-
VC database programming, MFC prepared can be used in conjunction with the CListC...
VC进行数据库编程,MFC编写的,可以与CListCtrl控件配合使用-VC database programming, MFC prepared can be used in conjunction with the CListCtrl control
- 2023-03-21 16:30:03下载
- 积分:1
-
数据结构顺序法解表达式
数据结构顺序法解表达式-sequence data structure Solving expression
- 2023-09-01 11:35:03下载
- 积分:1
-
在DOS环境下的最小二叉树程序,比较简单,可供大家学习参考...
在DOS环境下的最小二叉树程序,比较简单,可供大家学习参考-DOS environment in the smallest binary tree procedure is relatively simple for everybody to learn the reference
- 2022-04-24 07:01:57下载
- 积分:1
-
实验中我们使用了四种方法进行串匹配,通过对相同的文本和相同的模式串进行四种不同算法的串匹配操作,比较四种算法的优劣。...
实验中我们使用了四种方法进行串匹配,通过对相同的文本和相同的模式串进行四种不同算法的串匹配操作,比较四种算法的优劣。-Experiment we used four methods for string matching, through the same text and the same pattern for four different algorithms string matching operation to compare the merits of the four algorithms.
- 2022-09-09 08:20:03下载
- 积分:1
-
一个有关于VC6.0与ACCESS数据库结合的小程序
一个有关于VC6.0与ACCESS数据库结合的小程序-An ACCESS database on VC6.0 and the combination of small programs
- 2022-02-25 00:40:35下载
- 积分:1
-
float型而二叉树的创建及遍历
#include
#include
struct BiTNode //定义二叉树结构体
{
float data;
struct BiTNode *lchild;
struct BiTNode *rchild;
};
//二叉树创建函数
struct BiTNode *CreateTree(float *preorder,float *inorder,int lenth)
{
float *p,*q;
- 2022-12-24 11:10:03下载
- 积分:1