c51單片機(jī)實(shí)現(xiàn)小車紅外尋線運(yùn)動(dòng)詳細(xì)代碼實(shí)現(xiàn),采用C/C++實(shí)現(xiàn),KEIL燒錄入單片機(jī)
上傳時(shí)間: 2017-07-09
上傳用戶:familiarsmile
將源代碼轉(zhuǎn)換成html,支持多操作系統(tǒng),支持多種編程語(yǔ)言:Ada95, ASP, Assembler, Basic, C, C#, C++, Cg, CLIPS, Fortran, Haskell, Java, Markup, Modula2, Objective C, Pascal, Perl, PHP, Python, Renderman, Ruby, SQL, Tcl
標(biāo)簽: html 源代碼 操作系統(tǒng) 轉(zhuǎn)換成
上傳時(shí)間: 2013-12-28
上傳用戶:爺?shù)臍赓|(zhì)
經(jīng)典數(shù)據(jù)結(jié)構(gòu)編程,C語(yǔ)言版,C/C++開(kāi)發(fā)環(huán)境均可用,如VC。可學(xué)習(xí)借鑒。
標(biāo)簽: 數(shù)據(jù)結(jié)構(gòu) 編程
上傳時(shí)間: 2017-08-06
上傳用戶:thinode
This document specifies a collection of compiler directives, library routines, and environment variables that can be used to specify shared-memory parallelism in C, C++ and Fortran programs. This functionality collectively defines the specification of the OpenMP Application Program Interface (OpenMP API). This specification provides a model for parallel programming that is portable across shared memory architectures from different vendors. Compilers from numerous vendors support the OpenMP API. More information about OpenMP can be found at the following web site:
標(biāo)簽: environment collection directives specifies
上傳時(shí)間: 2013-12-25
上傳用戶:shinesyh
從 Mentor Graphics 的自動(dòng)測(cè)試圖形生成(ATPG)工具 FastScan的 測(cè)試文檔中提取出測(cè)試電路(CUT)的測(cè)試模式,生成便于對(duì)應(yīng)壓縮算法的文件 格式。 本文中, 給出了 2 種壓縮測(cè)試模式的方法, 一種是基于統(tǒng)計(jì)的哈夫曼編碼, 一種是基于差分運(yùn)算的Golomb 編碼。本次畢業(yè)設(shè)計(jì)中,在熟悉Mentor Graphics ATPG工具 FastScan的基本功能和其主要的測(cè)試模式輸出文件的格式的基礎(chǔ)上, 實(shí)現(xiàn)其中測(cè)試結(jié)構(gòu)和測(cè)試模式數(shù)據(jù)的分析提取, 并且在掌握典型的測(cè)試模式壓縮 算法的思想以及 C/C++開(kāi)發(fā)環(huán)境的前提下,選擇或綜合相關(guān)的優(yōu)化壓縮算法,針 對(duì)測(cè)試結(jié)構(gòu)信息,實(shí)現(xiàn)測(cè)試模式數(shù)據(jù)的壓縮,及軟件的基本圖形化操作和結(jié)果報(bào) 告界面。
標(biāo)簽: Graphics FastScan Mentor ATPG
上傳時(shí)間: 2017-08-17
上傳用戶:bcjtao
3.缺少文件 4.所選類別和開(kāi)發(fā)環(huán)境不對(duì) 5.亂寫說(shuō)明或說(shuō)明不夠認(rèn)真 6.壓縮文件有密碼 7.源碼重復(fù)或已經(jīng)存在 請(qǐng)不要上傳有版權(quán)爭(zhēng)議的內(nèi)容和木馬病毒代碼 開(kāi)發(fā)環(huán)境: 請(qǐng)選擇 Visual C++ Visual Basic DOS Unix_Linux C++ Builder Java Windows_Unix Delphi C-C++ PHP-PERL PHP Perl Python HTML Asm Pascal Borland C++ Others MultiPlatform C++ VFP SQL PDF TEXT WORD VBScript JavaScript ASP CSharp CHM FlashMX matlab PowerBuilder PPT LabView Flex MathCAD VBA PalmOS IDL LISP VHDL Objective-C Fortran tcl/tk QT(重要) 功能描述: 請(qǐng)認(rèn)真閱讀您的文件包然后寫出
標(biāo)簽: 開(kāi)發(fā)環(huán)境 密碼 代碼 源碼
上傳時(shí)間: 2017-08-18
上傳用戶:stewart·
Why do People Program? Each person can have his own reason for programming but I can tell you that programming is one of the best ways to gain a deep understanding of computers and computer technology. Learning to program makes you understand why computers and computer programs work the way they do. It also puts some sense into you about how hard it is to create software. 1.2. What is C++ & OOP? C++ is an extended version C. C was developed at Bell Labs. in 1978.
標(biāo)簽: programming can Program People
上傳時(shí)間: 2013-12-07
上傳用戶:qazxsw
三角形單元有限元計(jì)算程序源代碼,C/C++
上傳時(shí)間: 2017-08-23
上傳用戶:jeffery
RSA ( Rivest Shamir Adleman )is crypthograph system that used to give a secret information and digital signature . Its security based on Integer Factorization Problem (IFP). RSA uses an asymetric key. RSA was created by Rivest, Shamir, and Adleman in 1977. Every user have a pair of key, public key and private key. Public key (e) . You may choose any number for e with these requirements, 1< e <Æ (n), where Æ (n)= (p-1) (q-1) ( p and q are first-rate), gcd (e,Æ (n))=1 (gcd= greatest common divisor). Private key (d). d=(1/e) mod(Æ (n)) Encyption (C) . C=Mª mod(n), a = e (public key), n=pq Descryption (D) . D=C° mod(n), o = d (private key
標(biāo)簽: crypthograph information Adleman Rivest
上傳時(shí)間: 2017-09-01
上傳用戶:chfanjiang
電信計(jì)費(fèi)項(xiàng)目 該系統(tǒng)在Sun Solaris下開(kāi)發(fā),運(yùn)行于Apache Tomcat平臺(tái),采用J2EE架構(gòu),基于Struts、Hibernate、Spring技術(shù)或EJB組件技術(shù)以及Oracle 9i數(shù)據(jù)庫(kù)系統(tǒng)。該系統(tǒng)后臺(tái)主要由數(shù)據(jù)采集系統(tǒng)和數(shù)據(jù)整合系統(tǒng)提供支持,前臺(tái)部分主要分為用戶自服務(wù)管理,資費(fèi)管理,用戶管理,管理員管理,帳單管理,帳務(wù)管理6個(gè)模塊。 該系統(tǒng)后臺(tái)部分包括數(shù)據(jù)采集系統(tǒng)(包括采集模塊和接受模塊)和數(shù)據(jù)整合系統(tǒng);它們實(shí)現(xiàn)的功能是:1.定期采集(次/小時(shí))原始計(jì)費(fèi)Log(wtmpx)文件,整理成BIDR數(shù)據(jù)清單,并上傳給中心處理系統(tǒng)。2.中心處理系統(tǒng)(接收模塊)偵聽(tīng)并收集采集系統(tǒng)發(fā)送的數(shù)據(jù)信息BIDR,并通過(guò)PROC將數(shù)據(jù)保存到數(shù)據(jù)庫(kù)明細(xì)表t_detail_X中,在發(fā)送和接受過(guò)程中主要采用Unix C/C++(socket)實(shí)現(xiàn)。3.通過(guò)t_detail_X表完成天整合表t_day_X,月整合表t_month_X,年整合表t_year_X的實(shí)現(xiàn)。
標(biāo)簽: Solaris Apache Tomcat J2EE
上傳時(shí)間: 2013-12-02
上傳用戶:a6697238
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1