-
C 字符串中的程序
#include < stdio.h >
#include < stdlib.h >
int main)
{
char str [20] ;
printf ("Digite uma stringn") ;
setbuf(stdin,NULL) ;
gets(str) ;
int i;
为 (我 = 0 ; 我 < 4; i + +) {
printf("%c",str[i]) ;
}
返回 0 ;
}
- 2022-08-10 12:27:30下载
- 积分:1
-
Gauss column principle eliminate for bankdialog systems
Gauss column principle eliminate for bankdialog systems
- 2022-04-30 16:38:20下载
- 积分:1
-
This is the dichotomy of the source Root
这是二分法求根的源码-This is the dichotomy of the source Root
- 2022-08-12 13:09:16下载
- 积分:1
-
用C++写的矩阵和矢量运算库
用C++写的矩阵和矢量运算库-C write the matrix and vector arithmetic library
- 2023-01-20 04:05:04下载
- 积分:1
-
神经网络优化算法
BP学习算法具有结构简单、参数可调、可操作性好等优点,虽然BP神经网络是人工神经网络中应用最广泛的算法,但也存在一些缺陷,如学习收敛速度太慢。利用遗传算法对神经网络的网络结构、初始连接权值和阈值选取进行优化。
- 2022-03-02 08:27:42下载
- 积分:1
-
翼型气动计算程序xfoil
xfoi是一个为设计和分析亚音速飞机独立翼型编写的互动式的程序。它由下列执行各种函数的一系列菜单操作程序组成:-对一种已经存在的的翼型的粘流(或无粘流)分析,允许:*强制或自由转换*转捩的气泡分离*除了最大升力系数还可以对升力和阻力预测*卡门- 钱学森压缩性修正-通过屏幕指针或鼠标操作指定特定的表面速度分布,对翼型进行设计和优化设计。两种这样的工具可以实现:*完全反设计:基于一个复杂的绘图公式;*混合反设计: 一种xfoil的基本嵌版方法(面涡法)的扩展完全反设计允许多点设计,而混合反设计则需要对翼型个部分相对严格的几何约束
- 2022-02-02 16:31:23下载
- 积分:1
-
Discrete Mathematics in order to achieve the set of C++. C++, Discrete Mathemati...
离散数学中求集合的C++实现。用C++实现离散数学中的求集合这一公式,原理及代码都很简单的问题。-Discrete Mathematics in order to achieve the set of C++. C++, Discrete Mathematics in order to achieve the collection of this formula, principles and code are very simple questions.
- 2022-04-29 00:34:25下载
- 积分:1
-
A* 算法K短路算法
所谓K短路,就是从s到t的第K短的路,第1短就是最短路。
如何求第K短呢?有一种简单的方法是广度优先搜索,记录t出队列的次数,当t第k次出队列时,就是第k短路了。但点数过大时,入队列的节点过多,时间和空间复杂度都较高。
A*是在搜索中常用的优化,一种启发式搜索。简单的说,它可以用公式表示为f(n) = g(n) + f(n),其中,f(n)是从s经由节点n到t的估价函数,g(n)是在状态空间中从s到n的实际代价,h(n)是从n到t的最佳路径估计代价。在设计中,要保证h(n)
- 2023-06-26 04:50:02下载
- 积分:1
-
用于评价图像分割的精度,包括单个物体的相对错误率指标,和标记错误率。-used to evaluate the accuracy of image segmentation, including in
用于评价图像分割的精度,包括单个物体的相对错误率指标,和标记错误率。-used to evaluate the accuracy of image segmentation, including individual objects relative error rate indicators, and marking error rate.
- 2022-02-01 11:21:52下载
- 积分:1
-
8 Queen of c Solutions
8皇后问题的c++解决方案-8 Queen of c Solutions
- 2023-04-06 17:05:03下载
- 积分:1