搜索结果
找到约 254 项符合
long-Term 的查询结果
数据结构 1、 应用程序 直接可以实现多项式的各项操作。 2、 查看原代码VC++6.0打开“多项式poly88.dsp”或者用记事本打开“多项式poly88.cpp” 3、 代码简单说明:
1、 应用程序 直接可以实现多项式的各项操作。
2、 查看原代码VC++6.0打开“多项式\poly88.dsp”或者用记事本打开“多项式\poly88.cpp”
3、 代码简单说明:
本程序是一个工程文件包含了链式与顺序两种多项是处理方式:
链表存储结构:多项式类是polynomail,节点类是polynelem;
顺序存储结构:多项是结构体是Ployno ...
数据结构 将大数看作一个n进制数组
将大数看作一个n进制数组,对于目前的32位系统而言n可以取值为2的32次方,即0x10000000,
假如将一个1024位的大数转化成0x10000000进制,它就变成了32位,而每一位的取值范围就不是0-1
或0-9,而是0-0xffffffff。我们正好可以用一个无符号长整数来表示这一数值。所以1024位的大数
就是一个有32个元素的unsigned long数组。 ...
其他 最小二乘法曲线拟合 作者:佚名 文章来源:不详 点击数:164 更新时间:2006-1-4 【字体:小 大】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
最小二乘法曲线拟合
作者:佚名 文章来源:不详 点击数:164 更新时间:2006-1-4
【字体:小 大】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口】
//最小二乘法曲线拟合
typedef CArray<double,double>CDoubleArray
BOOL CalculateCurveParameter(CDoubleArray *X,CDoubleArray *Y,long M,lon ...
数学计算 用CORDIC算法实现的2参数反正切。结果的精度与CORDIC的迭代次数有关
用CORDIC算法实现的2参数反正切。结果的精度与CORDIC的迭代次数有关,迭代次数越多,精度越高。本例子中精确到小数点后4位。要提高迭代次数,还得把增加1QN格式的位数,比如32位long,程序多处需要修改,有需要的话自己改吧。 ...
数学计算 函数模板T max(T a, T b, T c),使之实现对任何类型数
函数模板T max(T a, T b, T c),使之实现对任何类型数,能从三个数中求出最大数返回。设计各种类型数据(char,short,long,float,double)调用此函数模板。
软件设计/软件工程 Software Engineering is a discipline applied by teams to produce high-quality, large-scale, cost-eff
Software Engineering is a discipline applied by teams to produce high-quality, large-scale, cost-effective software that satisfies the users’ needs, and can be maintained over time
Software Development is a weaker term where standards, tools, processes, etc. may not be applied
文章/文档 All 3G and GSM specifications have a 3GPP specification number consisting of 4 or 5 digits. (e.g. 09
All 3G and GSM specifications have a 3GPP specification number consisting of 4 or 5 digits. (e.g. 09.02 or 29.002). The first two digits define the series as listed in the table below. They are followed by 2 further digits for the 01 to 13 series or 3 further digits for the 21 to 55 series. The term ...
其他书籍 "Web Services is the clarion call of the computer software industry at present. How should we unders
"Web Services is the clarion call of the computer software industry at present. How should we understand the term? Because of the diversity of interpretation in the industry, the easiest way is to be general and assert that Web Services means XML in motion. If the network is the computer, Web Servic ...
人工智能/神经网络 this m file can Find a (near) optimal solution to the Traveling Salesman Problem (TSP) by setting up
this m file can Find a (near) optimal solution to the Traveling Salesman Problem (TSP) by setting up a Genetic Algorithm (GA) to search for the shortest path (least distance needed to travel to each city exactly once)
Notes:
1. Input error checking included
2. Inputs can be specified in any order, s ...
软件设计/软件工程 Visual Basic 6.0可以通过调用API函数格式化一个磁盘
Visual Basic 6.0可以通过调用API函数格式化一个磁盘,无论是软盘还是硬盘。
打开一个新的项目(工程1) ,如果你没有更改过缺省模式,那么Visual Basic 6.0会自动添加一个form1文件,在form1上添加一个命令控件,将下面的代码拷入。
Option Explicit
Private Declare Function SHFormatDrive Lib"shell32"( ByVal Hend ...