這是一個用C語言寫的禁忌搜索算法的解釋,解決了了一個n后問題,這是一個典型的介紹性的算法代碼。 很不錯
上傳時間: 2014-01-02
上傳用戶:shinesyh
shc是一個加密shell腳本的工具.它的作用是把shell腳本轉換為一個可執行的二進制文件. 用shell腳本對系統進行自動化維護,簡單,便捷而且可移植性好. 但shell腳本是可讀寫的,很有可能會泄露敏感信息,如用戶名,密碼,路徑,IP等. 同樣,在shell腳本運行時會也泄露敏感信息. shc是一個加密shell腳本的工具.它的作用是把shell腳本轉換為一個可執行的二進制文件. 這就很好的解決了上述問題. tar zxvf shc-3.8.tgz cd shc-3.8 make test make make test make strings make install 這一步需要root權限 使用方法: shc -r -f script-name 注意:要有-r選項, -f 后跟要加密的腳本名. 運行后會生成兩個文件,script-name.x 和 script-name.x.c script-name.x是加密后的可執行的二進制文件. ./script-name 即可運行. script-name.x.c是生成script-name.x的原文件(c語言)
上傳時間: 2013-12-21
上傳用戶:wfeel
【下載說明】 此為《C Programming for Embedded Systems》(嵌入式系統的C程序設計)一書的英文高清晰PDF下載。 【內容提要】 當今嵌入式處理器的生產已遠遠超過了為桌面系統所設計的處理器。本書通過介紹8位微控制器(MCU)的開發原理和C語言的相關知識,向讀者展示了如何用C語言編寫8位嵌入式MCU程序,內容涉及數據類型和變量、函數庫、優化和測試嵌入式C語言程序等。利用貫穿全書的樣例工程,揭示了特定設備硬件開發的詳細細節,以及用C語言進行嵌入式程序設計所帶來的快速開發、增強的可移植性和再利用等優越性能。 本書適合于從事嵌入式研究的相關技術人員使用。
標簽: Programming Embedded Systems
上傳時間: 2013-12-24
上傳用戶:jjj0202
功能:編寫的計算皮亞諾相關系數 開發語言: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
上傳時間: 2013-12-18
上傳用戶:skfreeman
C++實驗報告,包括函數的重載,調用,多態性,類的繼承與派生
標簽: 實驗報告
上傳時間: 2014-11-30
上傳用戶:yulg
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
混合動力汽車( HEV) 控制系統一直是電動車的核心控制部分。論文介紹了其控制系統具有多任務、實時性的特點, 開發了一套基于Freescale MC9S12DP256 控制器與CAN 總線設計的混合動力汽車管理系統, 提出了在軟件開發中引入嵌入式 實時操作系統μC /OS—II , 并重點詳述了μC /OS—II 在該系統中的移植與應用。經過理論和實驗證明, 該控制系統實時性 強、可靠性高。
上傳時間: 2014-01-25
上傳用戶:wab1981
C針對模式識別問題H描述了支持向量機的基本思想H著重討論了OD=?PI最小二乘=?PI加權=?P 和直接 =?P 等新的支持向量機方法H用于降低訓練時間和減少計算復雜性的海量樣本數據訓練算法分塊法I分解法H提 高泛化能力的模型選擇方法H以及逐一鑒別法I一一區分法IPD., 分類法I一次性求解等多類別分類方法@最后給 出了污水生化處理過程運行狀態監控的多類別分類實例@作為結構風險最小化準則的具體實現H支持向量機具有 全局最優性和較好的泛化能力
上傳時間: 2014-01-15
上傳用戶:Ants
多項式曲線擬合 任意介數 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
上傳用戶:宋桃子
C++面向對象程序(呂鳳翥).rar依原書內容制成的ppt,尤其適合備考。 本書全面系統地講述了C++語言的基本語法和編程方法,詳盡地描述了C++語言面向對象的重要特征:類和對象、繼承和派生類、多態性和虛函數等內容
上傳時間: 2016-04-16
上傳用戶:agent