turbo code log-map descdent decode
標(biāo)簽: descdent log-map decode turbo
上傳時(shí)間: 2016-01-13
上傳用戶:lijianyu172
B樹及其B+樹的實(shí)現(xiàn)代碼,支持模版(數(shù)據(jù)類型,M值)
上傳時(shí)間: 2016-02-22
上傳用戶:jhksyghr
Description Calculate a+b Input Two integer a,b (0<=a,b<=101000) Output Output a + b Sample Input 5 7 Sample Output 12
標(biāo)簽: Description Calculate integer 101000
上傳時(shí)間: 2014-01-25
上傳用戶:tonyshao
Prentice Hall 出版的整合linux和windows <b>英文原版<b> 另本人有大量電子書,O Reilly的最多 有需要的朋友在我的個(gè)人空間上給我留言
標(biāo)簽: Prentice windows linux Hall
上傳時(shí)間: 2014-01-22
上傳用戶:JIUSHICHEN
歐幾里德算法:輾轉(zhuǎn)求余 原理: gcd(a,b)=gcd(b,a mod b) 當(dāng)b為0時(shí),兩數(shù)的最大公約數(shù)即為a getchar()會(huì)接受前一個(gè)scanf的回車符
標(biāo)簽: gcd getchar scanf mod
上傳時(shí)間: 2014-01-10
上傳用戶:2467478207
//9488定時(shí)器B功能測試 9488定時(shí)器B功能測試B:DAMI調(diào)試通過: 9488 8位定時(shí)器B的使用 有關(guān)的I/O為三個(gè):TBPWM(輸出)(P1.0) 模式有:間隔定時(shí)功能,PWM模式 有定時(shí)中斷:定時(shí)器B溢出中斷
標(biāo)簽: 9488 TBPWM DAMI 定時(shí)器
上傳時(shí)間: 2017-06-01
上傳用戶:ryb
1.有三根桿子A,B,C。A桿上有若干碟子 2.每次移動(dòng)一塊碟子,小的只能疊在大的上面 3.把所有碟子從A桿全部移到C桿上 經(jīng)過研究發(fā)現(xiàn),漢諾塔的破解很簡單,就是按照移動(dòng)規(guī)則向一個(gè)方向移動(dòng)金片: 如3階漢諾塔的移動(dòng):A→C,A→B,C→B,A→C,B→A,B→C,A→C 此外,漢諾塔問題也是程序設(shè)計(jì)中的經(jīng)典遞歸問題
標(biāo)簽: 移動(dòng) 發(fā)現(xiàn)
上傳時(shí)間: 2016-07-25
上傳用戶:gxrui1991
溫度華氏轉(zhuǎn)變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70) printf("73分=C等級!!\n") else if (a>=60) printf("73分=D等級!!\n") else if (a<60) printf("73分=E等級!!\n") } { if (b>=90) printf("b=A等級!!\n") else if (b>=80) printf("85分=B等級!!\n") else if (b>=70) printf("85分=C等級!!\n") else if (b>=60) printf("85分=D等級!!\n") else if (b<60) printf("85分=E等級!!\n") } { if (c>=90) printf("c=A等級!!\n") else if (c>=80) printf("66分=B等級!!\n") else if (c>=70) printf("66分=C等級!!\n") else if (c>=60) printf("66分=D等級!!\n") else if (c<60) printf("66分=E等級!!\n") } system("pause") return 0 }
標(biāo)簽: include stdlib stdio gt
上傳時(shí)間: 2014-11-10
上傳用戶:wpwpwlxwlx
溫度華氏轉(zhuǎn)變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70) printf("73分=C等級!!\n") else if (a>=60) printf("73分=D等級!!\n") else if (a<60) printf("73分=E等級!!\n") } { if (b>=90) printf("b=A等級!!\n") else if (b>=80) printf("85分=B等級!!\n") else if (b>=70) printf("85分=C等級!!\n") else if (b>=60) printf("85分=D等級!!\n") else if (b<60) printf("85分=E等級!!\n") } { if (c>=90) printf("c=A等級!!\n") else if (c>=80) printf("66分=B等級!!\n") else if (c>=70) printf("66分=C等級!!\n") else if (c>=60) printf("66分=D等級!!\n") else if (c<60) printf("66分=E等級!!\n") } system("pause") return 0 }
標(biāo)簽: include stdlib stdio gt
上傳時(shí)間: 2013-12-12
上傳用戶:亞亞娟娟123
給定兩個(gè)集合A、B,集合內(nèi)的任一元素x滿足1 ≤ x ≤ 109,并且每個(gè)集合的元素個(gè)數(shù)不大于105。我們希望求出A、B之間的關(guān)系。 任 務(wù)?。航o定兩個(gè)集合的描述,判斷它們滿足下列關(guān)系的哪一種: A是B的一個(gè)真子集,輸出“A is a proper subset of B” B是A的一個(gè)真子集,輸出“B is a proper subset of A” A和B是同一個(gè)集合,輸出“A equals B” A和B的交集為空,輸出“A and B are disjoint” 上述情況都不是,輸出“I m confused!”
標(biāo)簽:
上傳時(shí)間: 2017-03-15
上傳用戶:yulg
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1