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

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

OUTput

  • This directory contains code implementing the K-means algorithm. Source code may be found in KMEANS

    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

    上傳時(shí)間: 2014-01-15

    上傳用戶:woshini123456

  • ucos的WINDOWS版!通過官方的移植版制作

    ucos的WINDOWS版!通過官方的移植版制作,重新創(chuàng)建了VC工程,使用WIN32界面而不是原版的控制臺窗口,可以很方便的在上面移植UCGUI,只要修改底層繪圖函數(shù)即可!并且程序中可以輸出調(diào)試信息到OUTput窗口,可以很方便地進(jìn)行模擬開發(fā)。

    標(biāo)簽: WINDOWS ucos 移植

    上傳時(shí)間: 2014-01-16

    上傳用戶:czl10052678

  • 簡單C編譯器生成的目標(biāo)代碼是8086的匯編代碼(16位)

    簡單C編譯器生成的目標(biāo)代碼是8086的匯編代碼(16位),可以在一般的PC上被像MASM之類的匯編編譯程序編譯,生成可執(zhí)行文件后,在DOS或Windows控制臺下運(yùn)行。 實(shí)現(xiàn)的語言定義如下: 語言類似于tiny語言,不支持過程調(diào)用,也就是只有一個(gè)main函數(shù),無其他函數(shù)和全局變量 基本語句:注釋語句(/*…*/),輸入語句(int input(void) ),輸出語句(void OUTput(int) ),賦值語句。這里的輸入輸出語句實(shí)際上類似于函數(shù)調(diào)用,可以看作是本語言內(nèi)部的函數(shù) 算術(shù)運(yùn)算符:+、—、*、/ 數(shù)據(jù)類型:整數(shù).

    標(biāo)簽: 8086 C編譯器 代碼 匯編代碼

    上傳時(shí)間: 2016-02-06

    上傳用戶:bakdesec

  • 詞典 Time Limit:3000MS Memory Limit:65536K Total Submit:2349 Accepted:603 Description 你旅游到了一個(gè)國

    詞典 Time Limit:3000MS Memory Limit:65536K Total Submit:2349 Accepted:603 Description 你旅游到了一個(gè)國外的城市。那里的人們說的外國語言你不能理解。不過幸運(yùn)的是,你有一本詞典可以幫助你。 Input 首先輸入一個(gè)詞典,詞典中包含不超過100000個(gè)詞條,每個(gè)詞條占據(jù)一行。每一個(gè)詞條包括一個(gè)英文單詞和一個(gè)外語單詞,兩個(gè)單詞之間用一個(gè)空格隔開。而且在詞典中不會(huì)有某個(gè)外語單詞出現(xiàn)超過兩次。詞典之后是一個(gè)空行,然后給出一個(gè)由外語單詞組成的文檔,文檔不超過100000行,而且每行只包括一個(gè)外語單詞。輸入中出現(xiàn)單詞只包括小寫字母,而且長度不會(huì)超過10。 OUTput 在輸出中,你需要把輸入文檔翻譯成英文,每行輸出一個(gè)英文單詞。如果某個(gè)外語單詞不在詞典中,就把這個(gè)單詞翻譯成“eh”。 Sample Input dog ogday cat atcay pig igpay froot ootfray loops oopslay atcay ittenkay oopslay Sample OUTput cat eh loops Hint 輸入比較大,推薦使用C語言的I / O函數(shù)。

    標(biāo)簽: Limit Description Accepted 65536K

    上傳時(shí)間: 2016-02-22

    上傳用戶:fandeshun

  • 這是VC的例子WriteAVI的代碼

    這是VC的例子WriteAVI的代碼,創(chuàng)建文件OUTput.avi,說明如何生成avi文件的例子。

    標(biāo)簽: WriteAVI 代碼

    上傳時(shí)間: 2016-02-23

    上傳用戶:時(shí)代電子小智

  • 很好的搜索: 給你很多長度不定的木棒

    很好的搜索: 給你很多長度不定的木棒,將他們分成幾組,每組中的總長度作為這組的標(biāo)示值,請給出一種分組方法,能使得所有標(biāo)示值中的最小值最大。 Input 多組,每組兩行,第一行是一個(gè)N和K,代表有N根木棒,分成K組,第二行是N個(gè)數(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

    標(biāo)簽: 搜索 長度

    上傳時(shí)間: 2013-12-23

    上傳用戶:nairui21

  • 簡單的floyd運(yùn)用 第一行輸入一個(gè)整數(shù)C。C是測試的情況(0< C <=30).第二行一個(gè)正整數(shù)N( 0< N <=100),表示道路的總數(shù).緊接N行

    簡單的floyd運(yùn)用 第一行輸入一個(gè)整數(shù)C。C是測試的情況(0< C <=30).第二行一個(gè)正整數(shù)N( 0< N <=100),表示道路的總數(shù).緊接N行,每一行包含兩個(gè)字符串, Si,,Ti,和一個(gè)整數(shù)Di,代表從Si到Ti的距離(0<= Di <=150)。最后一行有兩個(gè)字符串,S 和 T,你得找出從S 到 T的最短的距離。地名是不超過120個(gè)小寫字符的串(從‘a(chǎn)’到‘z’)。假設(shè)這里最多有100條直接連通兩個(gè)地方的路。 OUTput 輸出包含C行,每一行對一種測試情況。對每一種測試情況,輸出包含一個(gè)整數(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ù)

    上傳時(shí)間: 2016-03-10

    上傳用戶:wyc199288

  • 基于OFDM的無線寬帶系統(tǒng)仿真It contains mainly two parts, i.e. link-level simulator and system-level simulator.

    基于OFDM的無線寬帶系統(tǒng)仿真It contains mainly two parts, i.e. link-level simulator and system-level simulator. Link-level simulator focus on a single-cell single-user scenario, where signal is transmitted from tx, and estimated at rx. Comparing the difference in tx/rx signal, the error rate can be found out. The OUTput of the link-level simulator is the BLER/BER vs. SNR mapping table, that can be used for the system-level simulation. System-level simulator focus on a multi-cell multi-user scenario. For the sake of simplicity, it takes the mapping table aquired in the link-level simulation, measure the actural SNR, and finds the corresponding error rate.

    標(biāo)簽: simulator i.e. system-level link-level

    上傳時(shí)間: 2016-03-15

    上傳用戶:xsnjzljj

  • To use the ATLTrace tool: Debug an MFC or ATL project select Start from the Debug menu. Selec

    To use the ATLTrace tool: Debug an MFC or ATL project select Start from the Debug menu. Select MFC/ATL Trace Tool in the Tools menu. Expand the tree control list in the Trace List window. Here you will see the running application, any modules within that application, and the trace categories for each module. Customize, for each process, module, and category, which information is displayed in the OUTput window. The Trace level control in the Process group is related to the ATLTRACE2 level only those ATLTRACE2 messages with a level equal to or greater than the setting in the Trace level control will be displayed in the OUTput window. Select Apply to put your settings into effect. You can save your settings, and load them the next time you debug the application use the Save and Load buttons.

    標(biāo)簽: Debug the ATLTrace project

    上傳時(shí)間: 2014-01-15

    上傳用戶:wfl_yy

  • RT2570芯片USB口無線網(wǎng)卡linux設(shè)備驅(qū)動(dòng)程序,有調(diào)試信息輸出的.-RT2570 chip USB wireless network card device driver linux, the

    RT2570芯片USB口無線網(wǎng)卡linux設(shè)備驅(qū)動(dòng)程序,有調(diào)試信息輸出的.-RT2570 chip USB wireless network card device driver linux, the OUTput of debugging information.

    標(biāo)簽: linux 2570 USB wireless

    上傳時(shí)間: 2014-01-07

    上傳用戶:gxf2016

主站蜘蛛池模板: 筠连县| 环江| 蕉岭县| 保靖县| 鸡东县| 綦江县| 淅川县| 昔阳县| 宁晋县| 利津县| 永嘉县| 中宁县| 历史| 寿宁县| 伊宁市| 大英县| 明溪县| 东安县| 宣威市| 澄迈县| 桑日县| 叙永县| 凤山县| 莆田市| 繁峙县| 孝义市| 台北市| 卫辉市| 宜君县| 揭西县| 彰化县| 诏安县| 获嘉县| 色达县| 尚义县| 上杭县| 五家渠市| 满城县| 天柱县| 塔河县| 固阳县|