-
用基本C++语言实现的解决运筹学对偶问题的程序,需要提交对偶问题程序的朋友可以一试...
用基本C++语言实现的解决运筹学对偶问题的程序,需要提交对偶问题程序的朋友可以一试-With the basic C++ Realize the language of operations research on the dual problem solution procedure, required to submit to the dual problem procedures friends can one test
- 2023-09-06 12:45:03下载
- 积分:1
-
仿VB的InputBox
仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox仿VB的InputBox
- 2022-05-13 03:43:50下载
- 积分:1
-
神经元算法的源程序
神经元算法的实现方法和应用,通过神经元算法生成。txt文件,描述算法过程
- 2023-07-30 02:05:03下载
- 积分:1
-
ASTM 标准路谱
应用背景
ASTM标准路谱用于运输包装测试。
里面包含:公路谱;铁路谱;航空谱。
关键技术
运输振动测试。
将路谱数据输入振动台,振动台将按照规定的能量等级进行随机振动。
- 2022-08-20 06:13:41下载
- 积分:1
-
VC++三次样条插值和贝塞尔曲线实例程序
这个源代码是基于VC++ MFC 实现三次样条插值算法,实现数据平滑处理。MFC界面可实现控制点设置,且可选择采用三次样条插值或贝塞尔曲线平滑,结果有GUI显示。
- 2023-02-17 01:50:03下载
- 积分:1
-
这是我编的利用傅多项式插值计算法的程序。
这是我编的利用傅多项式插值计算法的程序。-This is for my use of polynomial interpolation method Fu procedures.
- 2022-04-11 03:36:29下载
- 积分:1
-
八皇后-N皇后的多种算法
里面有循环法和嵌套法。试着算到了二十几皇后。上学时候写的东西~拿出来分享下
- 2022-02-10 08:31:05下载
- 积分:1
-
lpc implement for distribut
lpc implement for distribut
- 2022-01-27 11:07:14下载
- 积分:1
-
三角网的生成算法,是win32控制台程序,能自动构成Delauney三角网...
三角网的生成算法,是win32控制台程序,能自动构成Delauney三角网-triangulation algorithm for the generation of console win32 procedures, automatically constitute Delauney triangulation
- 2022-06-21 18:51:57下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1