亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專(zhuān)輯| 精品軟件
登錄| 注冊(cè)

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. I ve included the sample code and makefile that I used for the Linux test. The demo, however, was written with Visual C++ 6 on a Windows 2000 platform.

    標(biāo)簽: L. Professor algorithm developed

    上傳時(shí)間: 2014-12-21

    上傳用戶(hù):gonuiln

  • 英語(yǔ)句子自然語(yǔ)言處理統(tǒng)計(jì)分析例子 Statistical parsing of English sentences Shows how to generate parse trees for

    英語(yǔ)句子自然語(yǔ)言處理統(tǒng)計(jì)分析例子 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.

    標(biāo)簽: Statistical sentences generate English

    上傳時(shí)間: 2015-04-18

    上傳用戶(hù):fxf126@126.com

  • 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 = [a,depot,b,d,e,f,h] T = 155 Part 4 - Generating a path below a cost threshold As an example, the query: ?- path_below_cost(a,[a,b,c,d,e,f,g,h],RS,300). returns: RS = [a,b,depot,c,d,e,g,f,h] ? RS = [a,c,depot,b,d,e,g,f,h] ? no ==================================

    標(biāo)簽: Part connections example prolog

    上傳時(shí)間: 2015-04-24

    上傳用戶(hù):ljt101007

  • cp0801_pathloss為UWB信道損耗計(jì)算函數(shù)

    cp0801_pathloss為UWB信道損耗計(jì)算函數(shù),利用a=(c/(d^gamma))計(jì)算出信道增益,然后對(duì)函數(shù)的輸入信號(hào)幅度進(jìn)行變換得到輸出結(jié)果。 cp0801_Gnoise1和cp0801_Gnoise2為產(chǎn)生AWGN的函數(shù),分別為Eb/No和Ex/No條件下AWGN的產(chǎn)生

    標(biāo)簽: pathloss 0801 UWB cp

    上傳時(shí)間: 2013-12-17

    上傳用戶(hù):gxmm

  • 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 generic supporting technologies that have been layered on top of XML and are used across a wide range of XML applications.

    標(biāo)簽: fundamental XML documents primarily

    上傳時(shí)間: 2014-01-14

    上傳用戶(hù):zjf3110

  • 大整數(shù)乘法例子代碼 /* 遞歸邊界

    大整數(shù)乘法例子代碼 /* 遞歸邊界,如果是1位二進(jìn)制數(shù)與1位二進(jìn)制數(shù)相乘,則可以直接計(jì)算 */ /*累計(jì)做1位二進(jìn)制乘法運(yùn)算的次數(shù)*/ /* return (X*Y) */ /* 計(jì)算n的值 */ /* 把X和Y拆分開(kāi)來(lái),令X=A*2^(n/2)+B, 左移位運(yùn)算,mod = 1<<(n/2) */ /* 計(jì)算XY=AC*2^n+(AD+CB)*2^(n/2)+BD */ /* 計(jì)算A*C,再向左移n位 */ /* 遞歸計(jì)算A*D */ /* 遞歸計(jì)算C*B */ /* 計(jì)算a21+a22,再向左移n/2位 */ /* 遞歸計(jì)算B*D */ /* XY=a1+a2+a3 */

    標(biāo)簽: 整數(shù) 乘法 代碼 遞歸

    上傳時(shí)間: 2015-05-19

    上傳用戶(hù):gyq

  • 利用“原始套接字”(Raw Socket)

    利用“原始套接字”(Raw Socket),我們可訪問(wèn)位于基層的傳輸協(xié)議。本章專(zhuān)門(mén)講解如 何運(yùn)用這種原始套接字,來(lái)模擬I P的一些實(shí)用工具,比如Tr a c e r o u t e和P i n g程序等等。使用原 始套接字,亦可對(duì)I P頭信息進(jìn)行實(shí)際的操作。本章只關(guān)心I P協(xié)議;至于如何針對(duì)其他協(xié)議使 用原始套接字,我們不打算提及。而且,大多數(shù)協(xié)議(除AT M以外)根本就不支持原始套接 字。所有原始套接字都是使用S O C K _ R AW這個(gè)套接字類(lèi)型來(lái)創(chuàng)建的,而且目前只有Wi n s o c k 2提供了對(duì)它的支持。因此,無(wú)論Microsoft Windows CE 還是老版本的Windows 95 (無(wú) Winsock 2升級(jí))均不能利用原始套接字的能力。

    標(biāo)簽: Socket Raw 套接

    上傳時(shí)間: 2015-07-08

    上傳用戶(hù):時(shí)代電子小智

  • 數(shù)據(jù)結(jié)構(gòu)

    數(shù)據(jù)結(jié)構(gòu),二叉樹(shù)和哈夫曼編碼。C++ 1、 學(xué)會(huì)針對(duì)DFA轉(zhuǎn)換圖實(shí)現(xiàn)相應(yīng)的高級(jí)語(yǔ)言源程序 ·a C++ Class Library of Cr ·簡(jiǎn)單的防火墻,可以用來(lái)學(xué)習(xí),作為畢業(yè)課設(shè)也相當(dāng)有幫 ·實(shí)現(xiàn)ARM 芯片的一對(duì)PWM 輸出用于控制直流電機(jī) ·Programming the Microsoft ·VC調(diào)用java的簡(jiǎn)單例子。需要注意jvm.dll ·這是介紹在VC++6。0下如何編寫(xiě)GPIB程序。有 ·GPS坐標(biāo)轉(zhuǎn)換軟件:直角坐標(biāo)與大地坐標(biāo)轉(zhuǎn)換 ·我的一個(gè)同學(xué)寫(xiě)的畢業(yè)論文 希望對(duì)大家來(lái)說(shuō)是有用的 ·最簡(jiǎn)單的用工作線程控制有進(jìn)程條的窗口,主窗口調(diào)用后 ·VC數(shù)據(jù)庫(kù)編程綜合應(yīng)用。訂單的管理 ·vhdl,用i2c控制philips的7111和7 ·基于winsock2的網(wǎng)絡(luò)封包截獲技術(shù),源代碼清楚

    標(biāo)簽: 數(shù)據(jù)結(jié)構(gòu)

    上傳時(shí)間: 2015-10-27

    上傳用戶(hù):whenfly

  • 本文專(zhuān)門(mén)講解如何運(yùn)用這種原始套接字

    本文專(zhuān)門(mén)講解如何運(yùn)用這種原始套接字,來(lái)模擬I P的一些實(shí)用工具,比如Tr a c e r o u t e和P i n g程序等等。使用原始套接字,亦可對(duì)I P頭信息進(jìn)行實(shí)際的操作。

    標(biāo)簽: 如何運(yùn)用 套接

    上傳時(shí)間: 2013-12-24

    上傳用戶(hù):wqxstar

  • 小波分析程序

    小波分析程序,C++ library A C++ library of signal analysis tools

    標(biāo)簽: 小波分析 程序

    上傳時(shí)間: 2015-12-24

    上傳用戶(hù):asdfasdfd

主站蜘蛛池模板: 原平市| 商洛市| 延边| 澄江县| 武清区| 隆林| 梁河县| 图木舒克市| 江孜县| 无为县| 潞城市| 潞西市| 房产| 葵青区| 张家港市| 亳州市| 云浮市| 临沧市| 泰兴市| 乌苏市| 津南区| 华蓥市| 通州市| 乌什县| 尼木县| 临汾市| 奉新县| 云安县| 肃北| 贞丰县| 诏安县| 翁源县| 大荔县| 夏津县| 肥城市| 普兰县| 建湖县| 临沂市| 巴林左旗| 滦南县| 丹东市|