/*************************************************************************************************** The 4×4-keyboard drivers *COMPANY NAME: WUYI UNIVERSITY *MODULE NAME: Keyboard drivers *WRITTEN BY: Pang Weicong *FUNCTION DESCRIPTION: Keyboard INPUT processing *EDITION: The first edition V1.0 *DATE: 2007-04-16 *Copyright: (c)2007 Pang Weicong **************************************************************************************************/
標(biāo)簽:
上傳時間: 2014-01-05
上傳用戶:xiaodu1124
很好的搜索: 給你很多長度不定的木棒,將他們分成幾組,每組中的總長度作為這組的標(biāo)示值,請給出一種分組方法,能使得所有標(biāo)示值中的最小值最大。 INPUT 多組,每組兩行,第一行是一個N和K,代表有N根木棒,分成K組,第二行是N個數(shù)字,代表木棒的長度。(N不超過100,K不超過20,每根木棒長度不超過1000) Output 輸出所有標(biāo)示值中的最小值的最大值。 Sample INPUT 5 3 1 3 5 7 9 5 3 89 59 68 35 29 Sample Output 8 89
上傳時間: 2013-12-23
上傳用戶:nairui21
簡單的floyd運用 第一行輸入一個整數(shù)C。C是測試的情況(0< C <=30).第二行一個正整數(shù)N( 0< N <=100),表示道路的總數(shù).緊接N行,每一行包含兩個字符串, Si,,Ti,和一個整數(shù)Di,代表從Si到Ti的距離(0<= Di <=150)。最后一行有兩個字符串,S 和 T,你得找出從S 到 T的最短的距離。地名是不超過120個小寫字符的串(從‘a(chǎn)’到‘z’)。假設(shè)這里最多有100條直接連通兩個地方的路。 Output 輸出包含C行,每一行對一種測試情況。對每一種測試情況,輸出包含一個整數(shù),假如S 到 T存在一條最短的路,輸出從S到T的最短距離,否則輸出“-1”. Sample INPUT 2 2 jiuzhouriver liuchi 89 liuchi liyuan 100 liuchi jiuzhouriver 3 youyongchi fengyuan 100 qinshi meiyuan 100 chaochang supermarkt 100 meiyuan youyongchi Sample Output 89 -1
標(biāo)簽: lt floyd 100 整數(shù)
上傳時間: 2016-03-10
上傳用戶:wyc199288
SED1335驅(qū)動320x240圖形液晶驅(qū)動演示程序 接口情況表述: No: LCM ----- 52 --------------------- 1...VSS..... GND 地線 2...VDD..... +5V(VCC) 電源 3...VO ..... -Vadj INPUT 對比度負壓調(diào)整輸入 4...A0 ..... P2.0 寄存器選擇信號,命令數(shù)據(jù)方式選擇 5.../WR..... WR 寫有效 6.../RD..... RD 讀有效 7...D0 ..... P0.0 數(shù)據(jù)總線 D0 8...D1 ..... P0.1 數(shù)據(jù)總線 D1 9...D2 ..... P0.2 數(shù)據(jù)總線 D2 10..D3 ..... P0.3 數(shù)據(jù)總線 D3 11..D4 ..... P0.4 數(shù)據(jù)總線 D4 12..D5 ..... P0.5 數(shù)據(jù)總線 D5 13..D6 ..... P0.6 數(shù)據(jù)總線 D6 14..D7 ..... P0.7 數(shù)據(jù)總線 D7 15../CS .... GND 片選通信號,低電平有效.實際使用應(yīng)編入地址 16../RES.... /RESET 復(fù)位信號,低電平有效,阻容式復(fù)位電路 17..VEE..... -Vout 逆變-22.5V 負電壓輸出 18..VSS..... GND 地線 0V
標(biāo)簽: 320x240 1335 SED LCM
上傳時間: 2013-12-22
上傳用戶:redmoons
模擬實現(xiàn)spooling技術(shù) 一個用C做的假脫機SPOOLING輸入程序,是操作系統(tǒng)實驗來的,-do spooling SPOOLING INPUT program is the experimental operating system
標(biāo)簽: spooling SPOOLING 模擬 脫機
上傳時間: 2013-12-15
上傳用戶:思琦琦
Kriging 插值程序,實現(xiàn)二維三維數(shù)據(jù)插值 Makefile_hp700 Makefile_ibm6000 kriging.mdf kriging.c outboard.c inv_m.tar.gz The inverse matrix source codes which got from Netlib. f2c.tar.gz The head file and library which are used to inverse matrix source codes. krig.net The example dx file. data1.dx The INPUT example.
上傳時間: 2016-03-27
上傳用戶:縹緲
一. 實驗?zāi)康? 設(shè)計,編制并調(diào)試一個語法分析程序,加深對語法分析原理的理解。可以編譯c語言的基本結(jié)構(gòu),包括循環(huán)嵌套和條件嵌套。 二. 實驗的輸入輸出 (1) 執(zhí)行程序時,可輸入源程序的路徑,如果輸入為空的話,將會編譯默認的源程序“./INPUT.dat” (2) 如果編譯發(fā)現(xiàn)有錯誤,則會輸出錯誤行數(shù),并在結(jié)束編譯時輸出“Complete!” 三. 語法結(jié)構(gòu) .... 四. 分析器主要代碼 .. 五 小結(jié)
標(biāo)簽: 實驗
上傳時間: 2013-12-16
上傳用戶:宋桃子
k-meansy算法源代碼。This directory contains code implementing the K-means algorithm. Source code may be found in KMEANS.CPP. Sample data isfound in KM2.DAT. The KMEANS program accepts INPUT consisting of vectors and calculates the given number of cluster centers using the K-means algorithm. Output is directed to the screen.
標(biāo)簽: code implementing directory algorithm
上傳時間: 2016-04-07
上傳用戶:shawvi
F:\RobinGame\include\INPUT\RDXJoystick.rar DX8 游戲手柄完整類
標(biāo)簽: RobinGameincludeINPUTRDXJoystick DX8 手柄
上傳時間: 2013-11-27
上傳用戶:songnanhua
A digital fi‘equeney meter designed with FPGA development software Q-~us 11 is introduced.The 1 Hz—l MHz INPUT measured pulse signals of the digital ii‘equency meter can be used for measuring frequency,period,pulse width and duty ratio,etc.The test results stably display O71 3 seven—segment numeric tubes,and the measuring ranges may be switched over automatically.The measuring error is equal to or less than 0.1%.
標(biāo)簽: development introduced designed software
上傳時間: 2016-04-09
上傳用戶:stewart·
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1