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

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

銷(xiāo)售預(yù)測(cè)

  • 嵌入式實時操作系統μC/OS-II(第2版)自帶光盤源碼 【原 書 名】 MicroC/OS-II The Real-Time Kernel,Second Edition 本書是MicroC/O

    嵌入式實時操作系統μC/OS-II(第2版)自帶光盤源碼 【原 書 名】 MicroC/OS-II The Real-Time Kernel,Second Edition 本書是MicroC/OSII The Real Time Kernel一書的第2版本,在第1版本(V2.0)基礎上做了重大改進與升級。通過對μC/OSII源代碼的分析與描述,講述了多任務實時的基本概念、競爭與調度算法、任務間同步與通信、存儲與定時的管理以及如何處理優先級反轉問題;介紹如何將μC/OSII移植到不同CPU上,如何調試移植代碼。在所附光盤中,給出已通過FAA安全認證的μC/OSII V2.52的全部源碼以及可在PC機上運行的移植范例。

    標簽: MicroC OS-II Real-Time Edition

    上傳時間: 2016-02-10

    上傳用戶:thesk123

  • Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權可正可負 2)算法描述: a)初始化:d

    Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權可正可負 2)算法描述: a)初始化:dis[u,v]=w[u,v] b)For k:=1 to n For i:=1 to n For j:=1 to n If dis[i,j]>dis[i,k]+dis[k,j] Then Dis[I,j]:=dis[I,k]+dis[k,j] c)算法結束:dis即為所有點對的最短路徑矩陣 3)算法小結:此算法簡單有效,由于三重循環結構緊湊,對于稠密圖,效率要高于執行|V|次Dijkstra算法。時間復雜度O(n^3)。 考慮下列變形:如(I,j)∈E則dis[I,j]初始為1,else初始為0,這樣的Floyd算法最后的最短路徑矩陣即成為一個判斷I,j是否有通路的矩陣。更簡單的,我們可以把dis設成boolean類型,則每次可以用“dis[I,j]:=dis[I,j]or(dis[I,k]and dis[k,j])”來代替算法描述中的藍色部分,可以更直觀地得到I,j的連通情況。

    標簽: Floyd-Warshall Shortest Pairs Paths

    上傳時間: 2013-12-01

    上傳用戶:dyctj

  • 用C++中的MFC編程實現正軸等角割圓柱投影

    用C++中的MFC編程實現正軸等角割圓柱投影,實現以下要求: 取克拉索夫斯基橢球 (1)制圖區域: Bs=0°, BN=25° LE=105°, LE=125° (2)經緯線間隔: ΔB=ΔL=5° (3)制圖比例尺: 1:M0=1:1000 000 (4)標準緯線: Bk=±15° 計算經緯網格點的 x, y,m,n, p

    標簽: MFC 編程實現 投影

    上傳時間: 2013-12-29

    上傳用戶:himbly

  • 加密程序源代碼* A 變成 C

    加密程序源代碼* A 變成 C,B 變成 D,a 變成 c,b 變成 d,Y 變成 A, * z 變成 b,以此類推。非字母字符不變。

    標簽: 加密 程序 源代碼

    上傳時間: 2013-12-28

    上傳用戶:stvnash

  • 本書全面介紹了UNIX系統的程序設計界面—系統調用界面和標準C庫提供的許多函數。 本書的前15章著重于理論知識的闡述

    本書全面介紹了UNIX系統的程序設計界面—系統調用界面和標準C庫提供的許多函數。 本書的前15章著重于理論知識的闡述,主要內容包括UNIX文件和目錄、進程環境、進程控制、進程間通信以及各種I/O。在此基礎上,分別按章介紹了多個應用實例,包括如何創建數據庫函數庫,PostScript 打印機驅動程序,調制解調器撥號器及在偽終端上運行其他程序的程序等。 本書內容豐富權威,概念清晰精辟,一直以來被譽為UNIX編程的“圣經”,對于所有UNIX程序員—無論是初學者還是專家級人士—都是一本無價的參考書籍。

    標簽: UNIX 程序設計 標準

    上傳時間: 2014-11-23

    上傳用戶:zycidjl

  • 功能:編寫的計算皮亞諾相關系數 開發語言:ruby 調用:correlate(x,y) 其中,x,y為需要計算相關度的向量 調用示例: a = [3, 6, 9, 12, 15, 18

    功能:編寫的計算皮亞諾相關系數 開發語言:ruby 調用:correlate(x,y) 其中,x,y為需要計算相關度的向量 調用示例: a = [3, 6, 9, 12, 15, 18, 21] b = [1.1, 2.1, 3.4, 4.8, 5.6] c = [1.9, 1.0, 3.9, 3.1, 6.9] c1 = correlate(a,a) # 1.0 c2 = correlate(a,a.reverse) # -1.0 c3 = correlate(b,c) # 0.8221970228 puts c1#,c2,c3

    標簽: correlate ruby 計算 12

    上傳時間: 2013-12-18

    上傳用戶:skfreeman

  • 第一部分 VISUAL C++實驗環境介紹 ..........................................3 一、Visual C++簡介 3 二、項目開發過程 4 三、集

    第一部分 VISUAL C++實驗環境介紹 ..........................................3 一、Visual C++簡介 3 二、項目開發過程 4 三、集成開發環境Developer Studio 4 四、常用功能鍵及其意義 7 第二部分 實驗 8 實驗一 熟悉實驗環境 8 實驗二 簡單程序開發 15 實驗三 函數與程序結構 18 實驗四 結構和類 21錯誤!未定義書簽。 實驗五 繼承與虛函數 28 實驗六 重載與文件I/O 33 實驗七 面向對象程序設計(1) 35 實驗八 面向對象程序設計(2) 47

    標簽: VISUAL Visual 實驗

    上傳時間: 2016-03-16

    上傳用戶:songyue1991

  • A* sudo sudo/* B* adduser script adduser C* rmuser script rmuser E* tout tout/*

    A* sudo sudo/* B* adduser script adduser C* rmuser script rmuser E* tout tout/* F* dumdum dumdum G* lostfile lostfile H* Mkfl.localsys Makefile.localsys I* spacegripe spacegripe J* sendmail.cf sendmail.cf N* remote remote.c O* distributed conrol distrib/* P* hosts and name server makerevhosts Q* xargs xargs/*

    標簽: adduser script rmuser sudo

    上傳時間: 2016-03-29

    上傳用戶:gxrui1991

  • Intro/: Directory containing introductory examples. HelloWorld.c A simple program that draws a bo

    Intro/: Directory containing introductory examples. HelloWorld.c A simple program that draws a box and writes "Hello World" in HelloWorld.f it. data The data file for the introductory progressive example. Lines.c Reads the data from file "data" and plots just the curve with Lines.f no labels, viewport or anything indicating quantity or units. Viewport.c Restricts the graph to a viewport and frames the viewport, Viewport.f leaving the remainder of the area for labels, etc. CharLbls.c Adds labels for the chart title, X-axis title, and Y-axis CharLbls.f title. Tics.c Adds tic marks to the viewport edges, but since clipping was Tics.f not set correctly, tics extend outside the viewport. Clip.c Sets clipping such that tic marks are clipped at the viewport Clip.f boundaries. TicLabels.c Adds numeric tic labels to the graph this is the final TicLabels.f installment of the progressive example.

    標簽: introductory HelloWorld containing Directory

    上傳時間: 2016-03-29

    上傳用戶:exxxds

  • 多項式曲線擬合 任意介數 Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as

    多項式曲線擬合 任意介數 Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as a template class, using vector<FloatType> parameters. Added a method to handle some EMathError exceptions. If do NOT want to use this just call PolyFit2 directly. usage: Call PolyFit by something like this. CPolyFit<double> PolyFitObj double correlation_coefficiant = PolyFitObj.PolyFit(X, Y, A) where X and Y are vectors of doubles which must have the same size and A is a vector of doubles which must be the same size as the number of coefficients required. returns: The correlation coefficient or -1 on failure. produces: A vector (A) which holds the coefficients.

    標簽: Least-squares arbitrary Purpose Builder

    上傳時間: 2013-12-18

    上傳用戶:宋桃子

主站蜘蛛池模板: 哈尔滨市| 额济纳旗| 常熟市| 潜江市| 卫辉市| 大同市| 乌什县| 德格县| 威海市| 静安区| 龙井市| 湖南省| 海南省| 辽宁省| 蓬溪县| 罗定市| 北安市| 罗甸县| 台山市| 新营市| 福清市| 商洛市| 封丘县| 衡南县| 望奎县| 甘洛县| 翁源县| 始兴县| 体育| 棋牌| 金湖县| 陈巴尔虎旗| 虞城县| 永吉县| 乌拉特中旗| 彰化市| 大埔区| 靖西县| 东方市| 榆树市| 富平县|