资源列表
[数学计算/工程计算] dividemultiply
说明:这是一个分治法应用的又一个例子,利用分治技术,做大整数乘法,尤其是几百位数以上的乘法,比一般的方法快很多,仅次于快速傅立叶变换.-This is a partition of the application also an example of the use of the partition, bigger integer multiplication, especially above the median of hundreds of multiplication, than the mu<唐海浪> 在 2025-06-07 上传 | 大小:1kb | 下载:0
[数学计算/工程计算] 20050510170124_LongAdd
说明:长整形相加的程序,客队任意长度的数据进行相加,很值得学习-long plastic procedures combined scoring arbitrary length of the data together, is worth learning.<王> 在 2025-06-07 上传 | 大小:15kb | 下载:0
[数学计算/工程计算] downhill filter
说明:一些自己做的关于图象处理的程序(如傅立叶变换,区域生长等),希望对人有帮助!-doing some of the image-processing procedures (such as Fourier transform, regional growth), people want to help!<张似的> 在 2025-06-07 上传 | 大小:506kb | 下载:0
[数学计算/工程计算] 矩阵加减乘(M)
说明:一个比较简单的算法程序。输入一些数,计算后按照矩阵的形式输出。设了三个数组a[],b[],c[]。分别实现c[]=a[]+b[],c[]=a[]-b[],c[]=a[]*b[]。-a relatively simple procedure of the algorithm. The importation of some few, calculated in accordance with the matrix in the form of output. Established three a<XFX> 在 2025-06-07 上传 | 大小:7kb | 下载:0
[数学计算/工程计算] 牛顿迭代法(M)
说明:原题:编写一个子程序NewTon(float x0,float eps,float x1)。它的功能是用牛顿迭代法求f(x)=x*x*x-2x*x+4x+1在x=0附近的一个实根。若迭代成功,则返回费0值;否则,返回0。-original title : the preparation of a subroutine NewTon (x0 float, float eps, float x1). Its function is to use Newton's iterative meth<XFX> 在 2025-06-07 上传 | 大小:10kb | 下载:0
[数学计算/工程计算] 排序(M)
说明:这是关于文件操作的一个题,由题意可知,该题解决起来应该分为三个部分。第一部分即从in.dat中读入数据,第二部分即实现排序的算法,最后应该实现将排序的结果输出到out.dat中。-This is the document on the operation of a title, and that Italy, we can see that the solutions to the problem should be divided into three parts. The first par<XFX> 在 2025-06-07 上传 | 大小:8kb | 下载:0
[数学计算/工程计算] 牛顿法解方程源代码
说明:牛顿法解方程之混沌情况,帮助你对牛顿法解方程的领悟,具有非常强的视觉冲击力,美仑美奂,不看将后悔一辈子的!-Newton equation solution chaotic situation and help you right Solving equations of Newton's grasp, with very strong visual impact, attractive, and will not look at a lifetime of regret!<汤凌> 在 2025-06-07 上传 | 大小:267kb | 下载:0
[数学计算/工程计算] 实数据快速傅立叶变换算法
说明:傅立叶变换是信号处理时最常用的算法之一,实现时域与频域之间的转换,对人们研究各种信号非常有用,本程序利用VC实现快速傅立叶变换算法-Fourier transform signal processing is the most commonly used algorithm, achieving time-domain and frequency domain between the conversion of the people look very useful signal, the pr<孙汶> 在 2025-06-07 上传 | 大小:301kb | 下载:0
[数学计算/工程计算] 51623457
说明:先序遍历非递归算法 #define maxsize 100 typedef struct { Bitree Elem[maxsize] int top }SqStack void PreOrderUnrec(Bitree t) { SqStack s StackInit(s) p=t while (p!=null !StackEmpty(s-preorder non- recursive algorithm# define maxsize 100 typedef struct (Bitree E<万方> 在 2025-06-07 上传 | 大小:3kb | 下载:0
[数学计算/工程计算] 大数运算类
说明:1. 实现原理: * 任何一个数都可以表示成指数形式,如下所示: * * N=nEe (0=<n的绝对值<=1,e为10的指数幂) * * 例如100可以表示成1E2,1001可以表示成1.01E3 * * 类 CBigNumber的成员number为上述的n,exponent为上述的e * * 2. 如何使用这个类: * * 你可以把CBigNumber的头文件和实现函数加入你的工程,然后定义 * * 该类的实例,就可以对这些实例进行加减乘除了(详见示例程序)-1. Princip<沈嘉祺> 在 2025-06-07 上传 | 大小:1kb | 下载:0