搜索结果
找到约 50,972 项符合
A-C 的查询结果
数值算法/人工智能 This algorithm was developed by Professor Ronald L. Rivest of MIT and can be found presented in seve
This algorithm was developed by Professor Ronald L. Rivest of MIT and can be found presented in several languages. What I provide to you here is a C++ derivative of the original C implementation of Professor Rivets. The library code itself is platform-independant and has been tested in Redhat Linux. ...
人工智能/神经网络 英语句子自然语言处理统计分析例子 Statistical parsing of English sentences Shows how to generate parse trees for
英语句子自然语言处理统计分析例子
Statistical parsing of English sentences
Shows how to generate parse trees for English language sentences using a C# port of OpenNLP, a statistical natural language parsing library.
其他 prolog 找路例子程序: === === === === === === Part 1-Adding connections Part 2-Simple Path example
prolog 找路例子程序:
=== === === === === ===
Part 1-Adding connections
Part 2-Simple Path
example
| ?- path1(a,b,P,T).
will produce the response:
T = 15
P = [a,b] ?
Part 3 - Non-repeating path
As an example, the query:
?- path2(a,h,P,T).
will succeed and may produce the bindings:
P = ...
matlab例程 cp0801_pathloss为UWB信道损耗计算函数
cp0801_pathloss为UWB信道损耗计算函数,利用a=(c/(d^gamma))计算出信道增益,然后对函数的输入信号幅度进行变换得到输出结果。
cp0801_Gnoise1和cp0801_Gnoise2为产生AWGN的函数,分别为Eb/No和Ex/No条件下AWGN的产生
其他书籍 This book focuses primarily on XML itself. It covers the fundamental rules that all XML documents an
This book focuses primarily on XML itself. It covers the fundamental rules that all XML documents and authors must adhere to, whether a web designer uses SMIL to add animations to web pages or a C++ programmer uses SOAP to exchange serialized objects with a remote database. This book also covers gen ...
Java编程 大整数乘法例子代码 /* 递归边界
大整数乘法例子代码
/* 递归边界,如果是1位二进制数与1位二进制数相乘,则可以直接计算 */
/*累计做1位二进制乘法运算的次数*/
/* return (X*Y) */
/* 计算n的值 */
/* 把X和Y拆分开来,令X=A*2^(n/2)+B, 左移位运算,mod = 1<<(n/2) */
/* 计算XY=AC*2^n+(AD+CB)*2^(n/2)+BD */
/* 计算A*C,再向左移n位 */
/* 递归计算A* ...
VC书籍 利用“原始套接字”(Raw Socket)
利用“原始套接字”(Raw Socket),我们可访问位于基层的传输协议。本章专门讲解如
何运用这种原始套接字,来模拟I P的一些实用工具,比如Tr a c e r o u t e和P i n g程序等等。使用原
始套接字,亦可对I P头信息进行实际的操作。本章只关心I P协议;至于如何针对其他协议使
用原始套接字,我们不打算提及。而且,大多数 ...
教育系统应用 数据结构
数据结构,二叉树和哈夫曼编码。C++
1、 学会针对DFA转换图实现相应的高级语言源程序
·a C++ Class Library of Cr
·简单的防火墙,可以用来学习,作为毕业课设也相当有帮
·实现ARM 芯片的一对PWM 输出用于控制直流电机
·Programming the Microsoft
·VC调用java的简单例子。需要注意jvm.dll
·这是介绍在VC++6。 ...
软件工程 本文专门讲解如何运用这种原始套接字
本文专门讲解如何运用这种原始套接字,来模拟I P的一些实用工具,比如Tr a c e r o u t e和P i n g程序等等。使用原始套接字,亦可对I P头信息进行实际的操作。