-
最小生成树的帕斯卡
此代码解决了在图中查找最小生成树的问题;
- 2022-12-30 09:50:03下载
- 积分:1
-
this file need a traffic log in txt format, given the traffic log, it gets the i...
this file need a traffic log in txt format, given the traffic log, it gets the ip address source and destination to perform the IP-lookup following the Huang s algorithm, as result it returns another txt showing the right port and destination ip
- 2023-04-05 05:05:03下载
- 积分:1
-
离散分数傅里叶变换算法的matlab程序
分数傅里叶变换的离散算法的matlab程序-Discrete fractional Fourier transform algorithm matlab program
- 2022-01-26 05:38:52下载
- 积分:1
-
pikaia v1.2 遗传算法Fortran程序
美国科罗拉多气象研究中心的遗传算法Fortran程序1.2版本, 配有详细的说明文档和例子,容易移植到用户自己的程序中。
- 2022-03-21 15:26:53下载
- 积分:1
-
顺序队列C实现
#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status; typedef int QElemType; /* QElemType类型根据实际情况而定,这里假设为int *//* 循环队列的顺序存储结构 */typedef struct{ QElemType data[MAXSIZE]; int front; /* 头指针 */ int rear; /* 尾指针,若队列不空,指向队列尾元素的下一个位置 */}SqQueue;Status visit(QElemType c){ printf("%d ",c); return OK;}/* 初始化一个空队列Q */Status Init
- 2022-08-13 11:29:01下载
- 积分:1
-
双积分算法
近似I=带极限的二重积分((F(X,Y)DY DX))
- 2023-06-27 00:40:02下载
- 积分:1
-
fortran程序
fortran程序-fortran procedures
- 2022-02-16 05:33:35下载
- 积分:1
-
smallest circle with a branch and bound method! With a good strategy for cutting...
最小圆排列的分支限界法! 用了很好的剪支策略很快的!-smallest circle with a branch and bound method! With a good strategy for cutting sticks soon!
- 2022-02-19 22:32:56下载
- 积分:1
-
C language Multiplier
用C语言实现的乘法器-C language Multiplier
- 2022-01-27 19:14:22下载
- 积分:1
-
php代码用于初学者学习
编写程序,在菜单列表框中选择多本图书,单击’提交’按钮,输出用户的选择值。初学者可以看下
- 2023-08-06 22:45:03下载
- 积分:1