-
课程设计
课程设计--VB成绩管理系统,希望能得上。-curriculum design-- VB performance management system, hoping to find the last.
- 2023-07-31 04:35:03下载
- 积分:1
-
VC++ 中使用 DB
VC++ 中使用 DB-Libray 编程(SQL Server) -use DB-Libray programming (SQL Server)
- 2023-07-10 07:10:03下载
- 积分:1
-
字符串搜索
此代码可以帮助您搜索基于关键词的字符串并根据先后顺序返回字符串。
- 2022-04-15 08:17:09下载
- 积分:1
-
sqlite读写VC例子,很不错,值得收藏研究!
sqlite读写VC例子,很不错,值得收藏研究!-sqlite read VC example, it is good, worthy of study collections!
- 2022-09-09 01:55:03下载
- 积分:1
-
最短路径的具体实现,使用了dikstra算法
最短路径的具体实现,使用了dikstra算法-Concrete realization of the shortest path, using the algorithm dikstra
- 2022-05-30 16:53:27下载
- 积分:1
-
双色球机选程序
为买双色球机选的朋友提供一个简单程序
使用了冒泡法和随机函数...
双色球机选程序
为买双色球机选的朋友提供一个简单程序
使用了冒泡法和随机函数-Loans Machine election procedures for the election to buy machines Friend Loans provide a simple procedure using a bubble method and random function
- 2023-07-18 04:20:02下载
- 积分:1
-
聚类分析的使用, 个人感觉还不错哦。sfdfasdfasdfsdfasd
聚类分析的使用, 个人感觉还不错哦。sfdfasdfasdfsdfasd-God, you can have a look.
- 2023-06-19 14:15:04下载
- 积分:1
-
迷宫的又一解法。该算法简单、实用、可读性强,是学习递归和回溯很好的例子。
迷宫的又一解法。该算法简单、实用、可读性强,是学习递归和回溯很好的例子。-maze of another solution. The algorithm is simple, practical and readable study is recursive and backtracking good example.
- 2022-03-05 14:22:00下载
- 积分:1
-
计算机模拟考试3级网络技术笔试
计算机模拟考试3级网络技术笔试-computer mock examinations three network technology quiz
- 2022-05-07 05:55:16下载
- 积分:1
-
c++链式队列的实现
c++链式队列的实现头文件如下:
typedef int Item;
typedef struct node * PNode;
typedef struct node
{
Item data;
PNode next;
}Node;
typedef struct
{
PNode front;
PNode rear;
int size;
}Queue;
/*构造一个空队列*/
Queue *InitQueue();
/*销毁一个队列*/
void DestroyQueue(Queue *pqueue);
/*清空一个队列*/
void ClearQueue(Queue *pqueue);
/*判断队列是否为空*/
int IsEmpty(Queue *pqueue);
/*返回队列大小*/
int GetSize(Queue *pqueue);
/*返回队头元素*/
PNode GetFront(Queue *pqueue,Item *pitem);
/*返回队尾元素*/
PNode GetRear(Queue *pqueue,Item *pitem);
/*将新元素入队*/
PNode EnQueue(Queue *pqueue,Item item);
/*队头元素出队*/
PNode DeQueue(Queue *pqueue,Item *pitem);
/*遍历队列并对各数据项调用visit函数*/
void QueueTraverse(Queue *pqueue,void (*visit)());
- 2023-09-04 20:50:03下载
- 积分:1