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

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

應(yīng)用<b>程序</b>

  • 提供了與《嵌入式實時操作系統及應用開發》教材配套的實驗系統軟件

    提供了與《嵌入式實時操作系統及應用開發》教材配套的實驗系統軟件,包括:1)mbda22-DEMO-PC:嵌入式實時軟件開發平臺“道系統”安裝程序目錄,請直接執行其中的up.exe文件。2)EXP-Lambda22-DEMO-PC.exe:實驗用例程序集,可以將這些實驗用例解壓安裝到“Lambda安裝目錄\demos”下。3)Lambda22-DEMO-PC使用說明.doc:“道系統”使用說。4)嵌入式操作系統應用開發實驗指導書.doc5)s_no.txt:“道系統”安裝序列號文件,里面包含安裝“道系統”時所用到的序列號(52位的字符數字串)。6)readme.txt:本文檔。注:在本CD-ROM中只提供針對嵌入式仿真PC平臺的版本,讀者可在此基礎上進行嵌入式軟件的仿真開發。

    標簽: 嵌入式 實時操作系統 實驗系統 應用開發

    上傳時間: 2015-03-23

    上傳用戶:kr770906

  • Samsung ARM7 s3c44b0 + uC-OSii + uC-GUI 完美的綜合到了一起

    Samsung ARM7 s3c44b0 + uC-OSii + uC-GUI 完美的綜合到了一起,學習arm最好用這個程序,一次可以學到2個系統:uCOSII+uCGUI,完整版本,共5.3M,240x32OLCD.

    標簽: Samsung s3c44b0 uC-OSii uC-GUI

    上傳時間: 2015-04-09

    上傳用戶:努力努力再努力

  • 這個源程序是關于無向圖的鄰接表生成和顯示的

    這個源程序是關于無向圖的鄰接表生成和顯示的,可以用這個程序實現

    標簽: 源程序 無向圖

    上傳時間: 2015-04-20

    上傳用戶:PresidentHuang

  • 數字運算

    數字運算,判斷一個數是否接近素數 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    標簽: 數字 運算

    上傳時間: 2015-05-21

    上傳用戶:daguda

  • The government of a small but important country has decided that the alphabet needs to be streamline

    The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition

    標簽: government streamline important alphabet

    上傳時間: 2015-06-09

    上傳用戶:weixiao99

  • 電力系統在臺穩定計算式電力系統不正常運行方式的一種計算。它的任務是已知電力系統某一正常運行狀態和受到某種擾動

    電力系統在臺穩定計算式電力系統不正常運行方式的一種計算。它的任務是已知電力系統某一正常運行狀態和受到某種擾動,計算電力系統所有發電機能否同步運行 1運行說明: 請輸入初始功率S0,形如a+bi 請輸入無限大系統母線電壓V0 請輸入系統等值電抗矩陣B 矩陣B有以下元素組成的行矩陣 1正常運行時的系統直軸等值電抗Xd 2故障運行時的系統直軸等值電抗X d 3故障切除后的系統直軸等值電抗 請輸入慣性時間常數Tj 請輸入時段數N 請輸入哪個時段發生故障Ni 請輸入每時段間隔的時間dt

    標簽: 電力系統 計算 運行

    上傳時間: 2015-06-13

    上傳用戶:it男一枚

  • 0-1整數規劃有很廣泛的應用背景

    0-1整數規劃有很廣泛的應用背景,比如指派問題,背包問題等等,實際上TSP問題也是一個0-1問題,當然這些問題都是NP問題,對于規模較大的問題用窮舉法是沒有辦法在可接受的時間內求得最優解的,本程序只不過是一個練習,得意之處是用遞歸法把所有解都排列出來。另:胡運權所著的《運籌學基礎及應用(第三版)》第97頁的例3,我用本程序求解得到的結果是:最優解是x*=(1,0, 0, 0, 0),最優值是f(x*)=8,但書求得最優解是x*=(1,0, 1, 0, 0),最優值是f(x*)=4,是不是書中寫錯了,請大家驗證。以下是源程序,大家可以任意使用無版權問題,另外,如果大家有大規模的0-1規劃的問題也希望提供給我,謝謝。變量個數至少是3個

    標簽: 整數 背景

    上傳時間: 2014-01-15

    上傳用戶:gdgzhym

  • DOS下迷你硬盤讀寫器終于完工了! 可讀寫絕對扇區

    DOS下迷你硬盤讀寫器終于完工了! 可讀寫絕對扇區,支持大硬盤,U盤(需加載驅動),軟盤。。 由于代碼效率高,速度很快。 初步通過測試。 最后在自己的機子上大膽進行了寫測試,即用壞數據寫入硬盤,硬盤崩潰后,再用本程序把預先備份的數據恢復到硬盤,結果硬盤完好如初。。 有源碼大家玩玩。。。

    標簽: DOS 硬盤 讀寫器 讀寫

    上傳時間: 2013-12-21

    上傳用戶:cazjing

  • 終于把迷你硬盤讀寫器完工了! 剛剛初略的測試了幾下

    終于把迷你硬盤讀寫器完工了! 剛剛初略的測試了幾下,還可以, 最后在自己的機子上大膽進行了寫測試,即用壞數據寫入硬盤,硬盤崩潰后,再用本程序把預先備份的數據恢復到硬盤,結果硬盤完好如初

    標簽: 硬盤 測試 讀寫器

    上傳時間: 2015-06-22

    上傳用戶:凌云御清風

  • Ps/2鍵盤源代碼

    Ps/2鍵盤源代碼,編譯工具為Keil,用此程序自己可以做鍵盤了

    標簽: Ps 源代碼

    上傳時間: 2013-12-28

    上傳用戶:風之驕子

主站蜘蛛池模板: 华亭县| 聂拉木县| 锡林郭勒盟| 星子县| 津市市| 新闻| 丹棱县| 如东县| 邵阳县| 慈溪市| 客服| 九江县| 南丰县| 康乐县| 阳朔县| 平谷区| 永仁县| 长垣县| 定安县| 景谷| 凌云县| 额尔古纳市| 崇义县| 江门市| 霍城县| 方正县| 重庆市| 五河县| 黎城县| 林口县| 肇东市| 靖远县| 稻城县| 富蕴县| 云南省| 滨州市| 克山县| 崇明县| 洞口县| 虞城县| 重庆市|