This build is for developing a "binary-to-BCD" converter for use in // displaying numerals in base-10 so that people can read and interpret the // numbers more readily than they could if the numbers were displayed in // binary or hexadecimal format. Also, a "BCD-to-binary" converter is // tested in this build.
標(biāo)簽: binary-to-BCD developing displaying for
上傳時(shí)間: 2015-07-07
上傳用戶(hù):lmeeworm
為L(zhǎng)inux系統(tǒng)設(shè)計(jì)一個(gè)簡(jiǎn)單的二級(jí)文件系統(tǒng)。要求做到以下幾點(diǎn): 1.可以實(shí)現(xiàn)下列幾條命令: login 用戶(hù)登錄 dir 列目錄 create 創(chuàng)建文件 delete 刪除文件 open 打開(kāi)文件 close 關(guān)閉文件 read 讀文件 write 寫(xiě)文件 2.列目錄時(shí)要列出文件名,物理地址,保護(hù)碼和文件長(zhǎng)度。 3.源文件可以進(jìn)行讀寫(xiě)保護(hù)。
標(biāo)簽: create delete Linux login
上傳時(shí)間: 2015-08-30
上傳用戶(hù):獨(dú)孤求源
上下文無(wú)關(guān)文法(Context-Free Grammar, CFG)是一個(gè)4元組G=(V, T, S, P),其中,V和T是不相交的有限集,S∈V,P是一組有限的產(chǎn)生式規(guī)則集,形如A→α,其中A∈V,且α∈(V∪T)*。V的元素稱(chēng)為非終結(jié)符,T的元素稱(chēng)為終結(jié)符,S是一個(gè)特殊的非終結(jié)符,稱(chēng)為文法開(kāi)始符。 設(shè)G=(V, T, S, P)是一個(gè)CFG,則G產(chǎn)生的語(yǔ)言是所有可由G產(chǎn)生的字符串組成的集合,即L(G)={x∈T* | Sx}。一個(gè)語(yǔ)言L(fǎng)是上下文無(wú)關(guān)語(yǔ)言(Context-Free Language, CFL),當(dāng)且僅當(dāng)存在一個(gè)CFG G,使得L=L(G)。 *⇒ 例如,設(shè)文法G:S→AB A→aA|a B→bB|b 則L(G)={a^nb^m | n,m>=1} 其中非終結(jié)符都是大寫(xiě)字母,開(kāi)始符都是S,終結(jié)符都是小寫(xiě)字母。
標(biāo)簽: Context-Free Grammar CFG
上傳時(shí)間: 2013-12-10
上傳用戶(hù):gaojiao1999
一:需求分析 1. 問(wèn)題描述 魔王總是使用自己的一種非常精練而抽象的語(yǔ)言講話(huà),沒(méi)人能聽(tīng)懂,但他的語(yǔ)言是可逐步解釋成人能聽(tīng)懂的語(yǔ)言,因?yàn)樗恼Z(yǔ)言是由以下兩種形式的規(guī)則由人的語(yǔ)言逐步抽象上去的: ----------------------------------------------------------- (1) a---> (B1)(B2)....(Bm) (2)[(op1)(p2)...(pn)]---->[o(pn)][o(p(n-1))].....[o(p1)o] ----------------------------------------------------------- 在這兩種形式中,從左到右均表示解釋.試寫(xiě)一個(gè)魔王語(yǔ)言的解釋系統(tǒng),把 他的話(huà)解釋成人能聽(tīng)得懂的話(huà). 2. 基本要求: 用下述兩條具體規(guī)則和上述規(guī)則形式(2)實(shí)現(xiàn).設(shè)大寫(xiě)字母表示魔王語(yǔ)言的詞匯 小寫(xiě)字母表示人的語(yǔ)言的詞匯 希臘字母表示可以用大寫(xiě)字母或小寫(xiě)字母代換的變量.魔王語(yǔ)言可含人的詞匯. (1) B --> tAdA (2) A --> sae 3. 測(cè)試數(shù)據(jù): B(ehnxgz)B 解釋成 tsaedsaeezegexenehetsaedsae若將小寫(xiě)字母與漢字建立下表所示的對(duì)應(yīng)關(guān)系,則魔王說(shuō)的話(huà)是:"天上一只鵝地上一只鵝鵝追鵝趕鵝下鵝蛋鵝恨鵝天上一只鵝地上一只鵝". | t | d | s | a | e | z | g | x | n | h | | 天 | 地 | 上 | 一只| 鵝 | 追 | 趕 | 下 | 蛋 | 恨 |
上傳時(shí)間: 2014-12-02
上傳用戶(hù):jkhjkh1982
This driver is based on the 2.6.3 version of drivers/usb/usb-skeleton.c but has been rewritten to be easy to read and use, as no locks are now needed anymore.
標(biāo)簽: usb-skeleton rewritten drivers version
上傳時(shí)間: 2015-11-20
上傳用戶(hù):talenthn
BY USING THIS SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF * THIS AGREEMENT. DO NOT USE THE SOFTWARE UNTIL YOU HAVE CAREFULLY * READ AND AGREED TO THE FOLLOWING TERMS AND CONDITIONS.
標(biāo)簽: THIS AGREEMENT AGREEING SOFTWARE
上傳時(shí)間: 2014-01-20
上傳用戶(hù):cx111111
為L(zhǎng)INUX設(shè)計(jì)一個(gè)簡(jiǎn)單的二級(jí)文件系統(tǒng)。要求做到以下幾點(diǎn): 1、 可以實(shí)現(xiàn)下列幾條命令 Login 用戶(hù)登錄 Dir 列文件目錄 Create 創(chuàng)建文件 Delete 刪除文件 Open 打開(kāi)文件 Close 關(guān)閉文件 Read 讀文件 Write 寫(xiě)文件 2、列目錄時(shí)要列出文件名、物理地址、保護(hù)碼和文件長(zhǎng)度。 3、源文件可以進(jìn)行讀寫(xiě)保護(hù)。
標(biāo)簽: Create Delete LINUX Login
上傳時(shí)間: 2016-07-16
上傳用戶(hù):jeffery
This program would work fine only with a specific flash tool through PC printer port under EPP mode.Program is capable of identifying flash chip manufacturer, device type, capacity,... It also allows user to dump flash data, edit/revise the content of flash chip on the Screen, and re-write them back to the chip.
標(biāo)簽: specific program printer through
上傳時(shí)間: 2014-01-16
上傳用戶(hù):ywqaxiwang
The "1818" is my first search word in this website, So I upload Lcd drive(Ssd1818a) C language code as my support. 96*64 dot matrix Graphic LCD controller: SSD1818A Parallel interface Initial routine code Command write and Data write Base functions and application code Ascii font library Product Photo Mcu: Pic16F887...etc. Keywords: Ssd1818a, dot matrix graphic, Parallel interface, Initial routine, base font8x8 librarys
標(biāo)簽: 1818 language website search
上傳時(shí)間: 2016-11-05
上傳用戶(hù):趙云興
漢諾塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation eg. if n = 2 A→B A→C B→C if n = 3 A→C A→B C→B A→C B→A B→C A→C
標(biāo)簽: the animation Simulate movement
上傳時(shí)間: 2017-02-11
上傳用戶(hù):waizhang
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1