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

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

無(wú)線(xiàn)傳輸

  • /*** *** *** *** *** *** *** *** *** *** *** *** * File: whyt1_lib.c * * Library for accessing W

    /*** *** *** *** *** *** *** *** *** *** *** *** * File: whyt1_lib.c * * Library for accessing WHYT1 devices. * The code accesses hardware using WinDriver s WDC library. * Code was generated by DriverWizard v9.01. *

    標(biāo)簽: accessing Library File whyt

    上傳時間: 2013-12-12

    上傳用戶:qiao8960

  • *--- --- --- --聲明--- --- --- -----*/ /* VC6.0下運行通過 此程序為本人苦心所做

    *--- --- --- --聲明--- --- --- -----*/ /* VC6.0下運行通過 此程序為本人苦心所做,請您在閱讀的時候,尊重本人的 勞動。可以修改,但當(dāng)做的每一處矯正或改進(jìn)時,請將改進(jìn) 方案,及修改部分發(fā)給本人 (修改部分請注名明:修改字樣) Email: jink2005@sina.com QQ: 272576320 ——初稿完成:06-5-27 jink2005 補充: 程序存在問題: (1) follow集不能處理:U->xVyVz的情況 (2) 因本人偷懶,本程序為加入文法判斷,故 輸入的文法必須為LL(1)文法 (3) 您可以幫忙擴充:消除左遞歸,提取公因子等函數(shù) (4) …… */ /*-----------------------------------------------*/ /*參考書《計算機編譯原理——編譯程序構(gòu)造實踐》 LL(1)語法分析,例1: ERTWF# +*()i# 文法G[E]:(按此格式輸入) 1 E -> TR 2 R -> +TR 3 R -> 4 T -> FW 5 W -> * FW 6 W -> 7 F -> (E) 8 F -> i 分析例句:i*(i)# , i+i# 例2: 編譯書5.6例題1 SHMA# adbe# S->aH H->aMd H->d M->Ab M-> A->aM A->e 分析例句:aaabd# */

    標(biāo)簽: 6.0 VC 運行 程序

    上傳時間: 2016-02-08

    上傳用戶:ayfeixiao

  • ABBYY FineReader 8.0專業(yè)版是最新、最準(zhǔn)確的ABBYY OCR軟體版本。它可以為用戶提供 最高級別識字精確率

    ABBYY FineReader 8.0專業(yè)版是最新、最準(zhǔn)確的ABBYY OCR軟體版本。它可以為用戶提供 最高級別識字精確率,是一個非常節(jié)省時間的好方案。FineReader允許你將各種紙張和 電子文件轉(zhuǎn)換、編輯以及重新使用,包括:雜誌、報紙、傳真、複製和PDF文件。

    標(biāo)簽: ABBYY FineReader 8.0 OCR

    上傳時間: 2016-02-11

    上傳用戶:q123321

  • auxilary files for the Crypt Breakers Workbench (cbw). CBW is a multi-window integrated workbench o

    auxilary files for the Crypt Breakers Workbench (cbw). CBW is a multi-window integrated workbench of tools that help a cryptanalist read files encrypted with the BSD4.2 crypt command. Anyone may copy, modify, use, or redistribute this system. It was originally written by Robert W. Baldwin at MIT

    標(biāo)簽: multi-window integrated Workbench workbench

    上傳時間: 2013-12-10

    上傳用戶:cjl42111

  • 個人開發(fā)

    個人開發(fā),以 DirectInput 為基底包成的類別,可同時接收滑鼠、鍵盤、JOYSTICK等輸入裝置。

    標(biāo)簽:

    上傳時間: 2013-12-13

    上傳用戶:love1314

  • This document is an operation guide for the MPC8XXFADS board. It contains operational, functional a

    This document is an operation guide for the MPC8XXFADS board. It contains operational, functional and general information about the FADS. The MPC8XXFADS is meant to serve as a platform for s/ w and h/w development around the MPC8XX family processors. Using its on-board resources and its associated debugger, a developer is able to download his code, run it, set breakpoints, display memory and registers and connect his own proprietary h/w via the expansion connectors, to be incorporated to a desired system with the MPC8XX processor.

    標(biāo)簽: operational MPC8XXFADS functional operation

    上傳時間: 2014-03-10

    上傳用戶:zsjinju

  • Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權(quán)可正可負(fù) 2)算法描述: a)初始化:d

    Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權(quán)可正可負(fù) 2)算法描述: a)初始化:dis[u,v]=w[u,v] b)For k:=1 to n For i:=1 to n For j:=1 to n If dis[i,j]>dis[i,k]+dis[k,j] Then Dis[I,j]:=dis[I,k]+dis[k,j] c)算法結(jié)束:dis即為所有點對的最短路徑矩陣 3)算法小結(jié):此算法簡單有效,由于三重循環(huán)結(jié)構(gòu)緊湊,對于稠密圖,效率要高于執(zhí)行|V|次Dijkstra算法。時間復(fù)雜度O(n^3)。 考慮下列變形:如(I,j)∈E則dis[I,j]初始為1,else初始為0,這樣的Floyd算法最后的最短路徑矩陣即成為一個判斷I,j是否有通路的矩陣。更簡單的,我們可以把dis設(shè)成boolean類型,則每次可以用“dis[I,j]:=dis[I,j]or(dis[I,k]and dis[k,j])”來代替算法描述中的藍(lán)色部分,可以更直觀地得到I,j的連通情況。

    標(biāo)簽: Floyd-Warshall Shortest Pairs Paths

    上傳時間: 2013-12-01

    上傳用戶:dyctj

  • 一套多文件摘要的計算方法

    一套多文件摘要的計算方法,給予每一個新聞群組簡短的摘要,使新聞讀者可以藉由這些簡短的摘要,大略瞭解新聞群組的內(nèi)容及所要傳達(dá)的消息。

    標(biāo)簽:

    上傳時間: 2016-02-17

    上傳用戶:jqy_china

  • This program is copyrighted by it s author and you are granted a free license to use the program fo

    This program is copyrighted by it s author and you are granted a free license to use the program for non-commercial purposes. If you are interested in using the program for commercial purposes please contact Kevin W. Russell at CIS 71551,253 for licensing information.

    標(biāo)簽: program copyrighted granted license

    上傳時間: 2016-02-18

    上傳用戶:wangzhen1990

  • unix環(huán)境高級編程英文版

    unix環(huán)境高級編程英文版,很經(jīng)典的一本書 Advanced Programming in the UNIX® Environment: Second Edition By W. Richard Stevens, Stephen A. Rago Publisher: Addison Wesley Professional Pub Date: June 17, 2005 ISBN: 0201433079 Pages: 960

    標(biāo)簽: unix 環(huán)境 高級編程 英文

    上傳時間: 2013-12-22

    上傳用戶:qiao8960

主站蜘蛛池模板: 兴国县| 涪陵区| 思茅市| 景泰县| 勐海县| 山丹县| 金乡县| 襄垣县| 商丘市| 克拉玛依市| 察隅县| 新邵县| 沂水县| 平乐县| 双鸭山市| 西城区| 南充市| 崇礼县| 岳普湖县| 利津县| 德安县| 贵州省| 康乐县| 和平区| 城步| 扎赉特旗| 雷波县| 巴东县| 枣强县| 安仁县| 浠水县| 马关县| 玉林市| 淳安县| 洪湖市| 敦煌市| 财经| 孟津县| 沙河市| 长寿区| 宁津县|