搜索结果
找到约 200 项符合
Double-linked 的查询结果
Linux/Unix编程 The Valgrind distribution has multiple tools. The most popular is the memory checking tool (called M
The Valgrind distribution has multiple tools. The most popular is the memory checking tool (called Memcheck) which can detect many common memory errors such as:
*
touching memory you shouldn t (eg. overrunning heap block boundaries)
*
using values before they have been initialized
*
inco ...
汇编语言 EXAMPLE SOURCE CODE FOR TASM FILTER his filter accepts input through the standard input stream, con
EXAMPLE SOURCE CODE FOR TASM FILTER
his filter accepts input through the standard input stream, converts it and outputs it to the standard output stream. The streams are linked
through pipes, such that the input stream is the output from the assembler
being invoked, and the output stream is connecte ...
书籍源码 Address book helps you look up your addresses from the system tray. It is quite useful in that way
Address book helps you look up your addresses from the system tray.
It is quite useful in that way 慶ause it stays out of the way and is
easily accessible when needed. Double clicking on any URL will start
the default web browser and take you to that URL. Double clicking on
the phone number will ...
数学计算 1.功能 用高斯方法计算n重积分(C语言) 2.参数说明 int n : 积分重数 int js[n] : js[k]表示第k层积分区间所划分的子区间 void (*ss)() : 指向
1.功能
用高斯方法计算n重积分(C语言)
2.参数说明
int n : 积分重数
int js[n] : js[k]表示第k层积分区间所划分的子区间
void (*ss)() : 指向计算各层积分上、下限的函数名(用户自编)
double (*f)() : 指向计算被积函数值的函数名(用户自编)
double gaus() : 函数返回积分值
3.文件说明
gaus.c为函数程序
gaus0.c为主函数 ...
文件格式 很多嵌入式系统
很多嵌入式系统,特别是应用于图像处理与高速数据采集等场合的嵌入式系统,都需要高速缓存大量的数据。DDR(Double Data Rate,双数据速率)SDRAM由于其速度快、容量大,而且价格便宜,因此能够很好地满足上述场合对大量数据缓存的需求。但DDR SDRAM的接口不能直接与现今的微处理器和DSP的存储器接口相连,需要在其间插入控 ...
数学计算 三次样条插值程序。编译运行本程序后
三次样条插值程序。编译运行本程序后,程序会弹出窗口及问句:“input the number of intervals:”,输入插值的次数即可,程序将得到的次数保存在变量int n中。如果输入的插值次数正确(n>=2),程序会显示下一语句:"input the value of the variable:",此时输入插值点即可,程序将得到的插值点保存在变量double v中。若 ...
Java编程 实现一个类
实现一个类,描述二维平面的直线Line。
描述属性:私有属性
&#61550 直线所通过的点:Point p;
&#61550 直线的斜率:double m
实现方法:
&#61550 直线的构建;
&#61550 返回直线的两个属性;
&#61550 返回直线在Y轴上的截距:yIntercept ;
&#61550 判断两条直线是否相等;
&#61550 显示直线的内容:y = mx + b
& ...
其他 问题描述:编写一个JAVA程序
问题描述:编写一个JAVA程序,用面向对象设计的方法编写一个电话卡的类。包括卡号、密码、余额、拨入号码等
b)基本要求:类的属性有卡号、密码、余额、拨入号码,电话卡的常用操作可以用连接电话方法、返回余额方法与通电话方法来实现。
c)方法功能描述:
构造方法(PhoneCard(卡号,密码,余额,拨入号码))可以完成属性 ...
matlab例程 % 文件名:randlsbget.m % 程序员:余波 % 编写时间:2007.6.25 % 函数功能: 本函数将完成提取隐秘于上的秘密信息 % 输入格式举例:result=( scover.
% 文件名:randlsbget.m
% 程序员:余波
% 编写时间:2007.6.25
% 函数功能: 本函数将完成提取隐秘于上的秘密信息
% 输入格式举例:result=( scover.jpg ,56, secret.txt ,2001)
% 参数说明:
% output是信息隐藏后的图象
% len_total是秘密信息的长度
% goalfile是提取出的秘密信息文件
% key是随机间隔函数的密钥
...
数学计算 双曲线回归方程 HyperbolaRegress.cs 注意!该模型要求a与b的值要大于0!使用该模型时应注意验证这个限制条件。我在实现模型时未加入任何出错流程控制。X不能为0。 方程模型为
双曲线回归方程 HyperbolaRegress.cs
注意!该模型要求a与b的值要大于0!使用该模型时应注意验证这个限制条件。我在实现模型时未加入任何出错流程控制。X不能为0。
方程模型为
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。
public override double for ...