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

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

負(fù)載均衡

  • 算法ebook(10部算法經典著作的合集) 算法ebook> 10部算法經典著作的合集 chm格式 (1)Fundamentals of Data Structures by Ellis Hor

    算法ebook(10部算法經典著作的合集) 算法ebook> 10部算法經典著作的合集 chm格式 (1)Fundamentals of Data Structures by Ellis Horowitz and Sartaj Sahni (2)Data Structures, Algorithms and Program Style Using C by James F. Korsh and Leonard J. Garrett (3)Data Structures and Algorithm Analysis in C by Mark Allen Weiss (4)Data Structures: From Arrays to Priority Queues by Wayne Amsbury (5)Information Retrieval: Data Structures & Algorithms edited by William B. Frakes and Ricardo Baeza-Yates (6)Introduction to Algorithms by Thomas H. Cormen, Charles E. Leiserson, and Ronald L. Rivest (7)Practical Data Structures in C++ by Bryan Flamig (8)Reliable Data Structures in C by Thomas Plum (9)Data Structures and Algorithms Alfred V. Aho, Bell Laboratories, Murray Hill, New Jersey John E. Hopcroft, Cornell University, Ithaca, New York Jeffrey D. Ullman, Stanford University, Stanford, California (10)DDJ Algorithms and Data Structures Articles

    標簽: ebook Fundamentals Structures Ellis

    上傳時間: 2015-04-04

    上傳用戶:tfyt

  • HD7279(c語言)驅動 程序作用:測試Sage Tech.開發板(MCP300)中hd7279鍵盤顯示芯片是否能正常工作 程序功能:按下1號鍵顯示0、1、2、3

    HD7279(c語言)驅動 程序作用:測試Sage Tech.開發板(MCP300)中hd7279鍵盤顯示芯片是否能正常工作 程序功能:按下1號鍵顯示0、1、2、3,按下2號鍵顯示c、d、e、f,按下3號鍵顯示4、5 、6、7 按下4號鍵顯示8、9、a、b,按下0號鍵點亮4個LED燈

    標簽: 7279 Sage Tech 300

    上傳時間: 2015-04-08

    上傳用戶:xuanjie

  • 本程序實現了數理統計的趨勢面分析

    本程序實現了數理統計的趨勢面分析,并給出了F,t檢驗,可用作數理統計教材的配套計算

    標簽: 程序 數理統計

    上傳時間: 2013-12-25

    上傳用戶:caiiicc

  • 44B0的測試程序。此程序為44B0的4*4鍵盤的應用程序

    44B0的測試程序。此程序為44B0的4*4鍵盤的應用程序,基于中斷0觸發,當按下其中一個鍵時,會把0-F的相應鍵值顯示在8段LED上。

    標簽: 44B0 測試程序 應用程序 程序

    上傳時間: 2013-12-19

    上傳用戶:tuilp1a

  • 關于自適應濾波的一系列程序

    關于自適應濾波的一系列程序,包括二進制信道均衡,噪聲對消,信號增強等,斑竹,該加精了吧?

    標簽: 自適應濾波 程序

    上傳時間: 2014-01-14

    上傳用戶:chenjjer

  • lcd的源程式

    lcd的源程式,把51的正負極接至lcd,及接好控制腳位,再將lcd.asm檔compile後,lcd便會產生我們寫入的效果

    標簽: lcd 程式

    上傳時間: 2013-12-20

    上傳用戶:woshini123456

  • led的源程式

    led的源程式,把51的正負極接至led,再將led.asm檔compile後,led便會產生一明一暗的效果

    標簽: led 程式

    上傳時間: 2015-04-17

    上傳用戶:waitingfy

  • ADC的源程式

    ADC的源程式,把51的正負極接至ADC,再將ADC.asm檔compile後,ACD便會產生將類比轉成數位訊號的效果

    標簽: ADC 程式

    上傳時間: 2013-12-31

    上傳用戶:569342831

  • 世界名牌專業音響網址大全,由東方網絡收集整理,是目前世界音響燈光行業著名公司及名牌產品網址的最新匯編

    世界名牌專業音響網址大全,由東方網絡收集整理,是目前世界音響燈光行業著名公司及名牌產品網址的最新匯編,每一頁的網址都按照公司或產品英文字母的第一個字母而排列,您可以按照公司或名牌產品中英文名稱的關鍵詞進行查找(Ctrl+F快捷鍵),如果沒有搜索結果,您可以直接到東方論壇詢問,我們將幫助您查找。該程序由原來的<世界名牌音響網址>現更名為<世界名牌專業音響網址> ,已從新調整,添加了一些新的網址,刪除了死鍵接,然后再作美化!該電子程序升級為9IASP Audio web V2.8

    標簽: 名牌 音響 網址 燈光

    上傳時間: 2015-04-22

    上傳用戶:stvnash

  • 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 ==================================

    標簽: Part connections example prolog

    上傳時間: 2015-04-24

    上傳用戶:ljt101007

主站蜘蛛池模板: 汾阳市| 房产| 黑龙江省| 沂源县| 台湾省| 临夏县| 凤庆县| 峡江县| 五河县| 台中县| 房山区| 远安县| 友谊县| 潼关县| 汤原县| 榆中县| 江华| 化州市| 尼勒克县| 禹城市| 浦城县| 水城县| 平陆县| 鞍山市| 宁波市| 奎屯市| 城口县| 丰顺县| 万源市| 万全县| 法库县| 榕江县| 定南县| 瓦房店市| 古蔺县| 乐安县| 娄烦县| 杭锦后旗| 翁牛特旗| 田东县| 冕宁县|