-
求最短路径的C++ 源代码 ,用很简单的数据结构实现的,运行速度很快...
求最短路径的C++ 源代码 ,用很简单的数据结构实现的,运行速度很快-The shortest path for the C++ Source code, using very simple data structure to achieve, to run fast
- 2022-02-25 07:46: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
-
C #用多元线性回归模型,一元钱当然可以..
用c#编写的多元线性回归模型,一元当然也可以用-With c# written in a multiple linear regression model, a dollar of course, can also be used
- 2022-05-25 12:59:44下载
- 积分:1
-
MySQL的ODBC接口程序源代码
MySQL的ODBC接口程序源代码-MySQL ODBC interface routine source code
- 2022-01-26 03:22:50下载
- 积分:1
-
纯C写的48位软件模拟浮点运算,可移植
测试版,V0.0000.01
需进一步测试及优化...
纯C写的48位软件模拟浮点运算,可移植
测试版,V0.0000.01
需进一步测试及优化-Written in pure C software simulation of 48 floating-point operations can be transplanted beta, V0.0000.01 need further testing and optimization
- 2022-10-29 22:00:04下载
- 积分:1
-
以链表的形式实现货物的管理,包括链表的创建,插入,删除,查询,更新等....
以链表的形式实现货物的管理,包括链表的创建,插入,删除,查询,更新等.-to List in the form of cargo management, including Chain create, insert, delete, query, update, etc..
- 2022-09-07 05:55:02下载
- 积分:1
-
hash
hash排序,用hash法进行字符或数字的排序。-hash
- 2023-05-11 11:50:03下载
- 积分:1
-
一个求进制的c++算法,希望能给大家带来帮助!如果大家有更好的,别忘记发给我啊! emil:wyx32893039@163.com...
一个求进制的c++算法,希望能给大家带来帮助!如果大家有更好的,别忘记发给我啊! emil:wyx32893039@163.com-seeking a band of c algorithm, we can bring hope to help! If you have the better, do not forget to me ah! Emil : wyx32893039@163.com
- 2022-01-26 04:44:06下载
- 积分:1
-
该系统是用vb6.0开发,连接数据库,有原代码设计,有详细的设计说明,可以自己更改程序。...
该系统是用vb6.0开发,连接数据库,有原代码设计,有详细的设计说明,可以自己更改程序。-The system is used vb6.0 development, connecting to the database, the original code design, detailed design specifications, can change its own procedures.
- 2022-05-05 04:06:14下载
- 积分:1
-
编的很垃圾 大家多多包涵 主要功能矩阵相加 减 乘 除 大家多多指点
编的很垃圾 大家多多包涵 主要功能矩阵相加 减 乘 除 大家多多指点-series of the very people refuse excused main function matrix arithmetic is a lot we kind
- 2023-08-14 00:45:03下载
- 积分:1