-
本程序适用于求解形如f(x)=1/2*x Ax+bx+c二次函数的稳定点
本程序适用于求解形如f(x)=1/2*x Ax+bx+c二次函数的稳定点-This procedure applies to solution of the form f (x) = 1/2* x" Ax+ bx+ c quadratic function of the stable point
- 2022-02-01 20:57:59下载
- 积分:1
-
天然气管道连接问题原程序,一百个用户,其中有四个无效用户,将其它96个有效用户连接成一个树形网络,用kruskal算法实现...
天然气管道连接问题原程序,一百个用户,其中有四个无效用户,将其它96个有效用户连接成一个树形网络,用kruskal算法实现-Natural gas pipeline to connect the issue of the original procedure, 100 users, which has four invalid users, will the other 96 valid user to connect into a tree network, using Kruskal Algorithm
- 2023-05-07 08:15:03下载
- 积分:1
-
砼非线性有限元源程序,用FORTRAN写的比较有参考价值
砼非线性有限元源程序,用FORTRAN写的比较有参考价值-Concrete non-linear finite element source code, using FORTRAN to write a comparison reference value
- 2022-03-21 10:19:07下载
- 积分:1
-
可以查询学生详细信息(学号、姓名、性别、入学时间、出生年月、电话、家庭住址・・・・・・),亦可查询简明信息(只含有姓名和年龄);可增加、删除和浏览学生信息;可按...
可以查询学生详细信息(学号、姓名、性别、入学时间、出生年月、电话、家庭住址・・・・・・),亦可查询简明信息(只含有姓名和年龄);可增加、删除和浏览学生信息;可按“学号”,“姓名”查询;可用菜单实现上述功能。-students can find detailed information (school, name, gender, school, date of birth, telephone, family residence), can also inquire about the concise information (contained only the name and age); increase. View and delete student information; according to "study", "name" inquiries; menu can be used to achieve the above functions.
- 2022-05-29 05:23:36下载
- 积分:1
-
使用结点分析法求解直流电阻电路,并将结果保存在txt格式的文档中...
使用结点分析法求解直流电阻电路,并将结果保存在txt格式的文档中-The use of node analysis method to solve the DC resistance circuit, and the results saved in txt format document
- 2022-07-27 14:21:49下载
- 积分:1
-
University of Hong Kong, David W. Cheung wrote "A General Incremental Techn
香港大学David W. Cheung编写了一个用于维护发现的关联规则的通用增量技术&fpp2,用于解决数据库更新挖掘关联规则的算法中。
- 2022-05-19 16:30:30下载
- 积分:1
-
分数阶统一混沌系统的离散算法
分数阶统一混沌系统的离散算法-This the program for fractional order Unified system, a simple but fast
method in time domain.-Fractional order unified chaotic system discrete algorithm-This the program for fractional order Unified system, a simple but fastmethod in time domain.
- 2022-01-24 10:22:58下载
- 积分:1
-
算法-贝尔曼-福特
algoritm - 贝尔曼 - 福特。
这是如何运作的?像其他动态规划问题,该算法计算自下而上地的最短路径。它先计算出的最短距离为具有在路径中在最一个边缘的最短路径。然后,它计算与在-NOST2的边缘,依此类推最短路径。外循环的第i次迭代后,用至多我边计算出的最短路径。可以有最大| V | - 在任何简单的路径1的边缘,这就是为什么在外循环运行的| v| - 1次。我们的想法是,假设不存在负权重周期,如果我们已经计算了最短路径至多我的边缘,然后迭代在所有边的保证,得到最短路径与在最第(i +1)个边(证明是简单,你可以参考这个或麻省理工学院的视频讲座)
- 2022-08-15 15:32:57下载
- 积分:1
-
matlab 信号生成器 gcs 代码
从 ADS1256 的读信号发生器,它包括阅读、 写作为 PGA、 增益、 其自我帮助程序的注册纪录册的注册纪录册
- 2022-11-13 14:15:03下载
- 积分: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