-
Guo Tao algorithm source VC
郭涛算法VC源码-Guo Tao algorithm source VC
- 2022-03-20 10:18:42下载
- 积分:1
-
PI值的计算算法,c++代码,值得好好学习
PI值的计算算法,c++代码,值得好好学习-PI value of the algorithm, c code, it is worth to learn
- 2022-03-11 23:47:39下载
- 积分:1
-
数值计算的稳定性也很好,同时也非常精确。
作为数值计算中稳定性很好的,同时求解激波很准确的求解格式-The stability of numerical calculation as well, at the same time very accurate solution of shock wave solving format
- 2022-01-26 05:18:15下载
- 积分: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
-
macra处理器
它是一个macra处理器程序 c 它执行一个macra处理器的所有基本功能。一次和两次macra处理器可以使用此实现的 b。你必须给一个包含宏指令的输入文件
- 2022-12-25 17:10:03下载
- 积分:1
-
C++链表操作
C++链表操作,从创建一个链表到对链表的增删改查,适合初学算法的朋友学习参考,转自别处,对其进行了一些修改。
- 2022-03-03 19:09:06下载
- 积分:1
-
组合数学的算法与程序设计
组合数学的算法与程序设计-combination of mathematical algorithms and program design
- 2023-07-02 17:00:05下载
- 积分:1
-
一个小型计算器,可以进行/加/减/乘/除/开放运算,希望你们喜欢。...
一个小型计算器,可以进行/加/减/乘/除/开放运算,希望你们喜欢。-a small calculator, can/add/subtract/multiply/addition/open computing, I hope you like.
- 2022-03-30 21:12:16下载
- 积分:1
-
随即数的产生 在计算机仿真系统中的应用
随即数的产生 在计算机仿真系统中的应用-then the emergence of several computer simulation system applications
- 2022-01-30 21:35:53下载
- 积分:1
-
最小二乘法拟和曲线,两个程序,大家
最小二乘法拟和曲线,两个程序,大家-least squares fitting curves, the two procedures, we look at
- 2023-08-19 03:15:04下载
- 积分:1