亚洲欧美第一页_禁久久精品乱码_粉嫩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.

    標簽: code implementing directory algorithm

    上傳時間: 2014-01-15

    上傳用戶:woshini123456

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

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

    標簽: WINDOWS ucos 移植

    上傳時間: 2014-01-16

    上傳用戶:czl10052678

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

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

    標簽: 8086 C編譯器 代碼 匯編代碼

    上傳時間: 2016-02-06

    上傳用戶:bakdesec

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

    詞典 Time Limit:3000MS Memory Limit:65536K Total Submit:2349 Accepted:603 Description 你旅游到了一個國外的城市。那里的人們說的外國語言你不能理解。不過幸運的是,你有一本詞典可以幫助你。 Input 首先輸入一個詞典,詞典中包含不超過100000個詞條,每個詞條占據一行。每一個詞條包括一個英文單詞和一個外語單詞,兩個單詞之間用一個空格隔開。而且在詞典中不會有某個外語單詞出現超過兩次。詞典之后是一個空行,然后給出一個由外語單詞組成的文檔,文檔不超過100000行,而且每行只包括一個外語單詞。輸入中出現單詞只包括小寫字母,而且長度不會超過10。 Output 在輸出中,你需要把輸入文檔翻譯成英文,每行輸出一個英文單詞。如果某個外語單詞不在詞典中,就把這個單詞翻譯成“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函數。

    標簽: Limit Description Accepted 65536K

    上傳時間: 2016-02-22

    上傳用戶:fandeshun

  • 這是VC的例子WriteAVI的代碼

    這是VC的例子WriteAVI的代碼,創建文件Output.avi,說明如何生成avi文件的例子。

    標簽: WriteAVI 代碼

    上傳時間: 2016-02-23

    上傳用戶:時代電子小智

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

    很好的搜索: 給你很多長度不定的木棒,將他們分成幾組,每組中的總長度作為這組的標示值,請給出一種分組方法,能使得所有標示值中的最小值最大。 Input 多組,每組兩行,第一行是一個N和K,代表有N根木棒,分成K組,第二行是N個數字,代表木棒的長度。(N不超過100,K不超過20,每根木棒長度不超過1000) Output 輸出所有標示值中的最小值的最大值。 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運用 第一行輸入一個整數C。C是測試的情況(0< C <=30).第二行一個正整數N( 0< N <=100),表示道路的總數.緊接N行

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

    標簽: lt floyd 100 整數

    上傳時間: 2016-03-10

    上傳用戶:wyc199288

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

    基于OFDM的無線寬帶系統仿真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.

    標簽: simulator i.e. system-level link-level

    上傳時間: 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.

    標簽: Debug the ATLTrace project

    上傳時間: 2014-01-15

    上傳用戶:wfl_yy

  • RT2570芯片USB口無線網卡linux設備驅動程序,有調試信息輸出的.-RT2570 chip USB wireless network card device driver linux, the

    RT2570芯片USB口無線網卡linux設備驅動程序,有調試信息輸出的.-RT2570 chip USB wireless network card device driver linux, the Output of debugging information.

    標簽: linux 2570 USB wireless

    上傳時間: 2014-01-07

    上傳用戶:gxf2016

主站蜘蛛池模板: 来宾市| 视频| 永康市| 繁昌县| 景泰县| 富民县| 双辽市| 九台市| 西昌市| 林周县| 武夷山市| 太康县| 阿瓦提县| 驻马店市| 光山县| 札达县| 白河县| 桂阳县| 陵川县| 曲沃县| 开阳县| 安宁市| 广河县| 德州市| 阳城县| 郸城县| 青河县| 华池县| 东阳市| 天水市| 桐柏县| 金华市| 白玉县| 清新县| 龙海市| 当涂县| 弥勒县| 攀枝花市| 陈巴尔虎旗| 临湘市| 中江县|