This set of simulation files performs a computational complexity performance comparison of the two methods mentioned in the paper. The source is ANSI-C compliant, hence any C-compiler can be used to compile the source code. It has been tested using Visual Studio.net C++ and TI code composer studio C compiler for the TMS320C6701. Note that the performance comparison may be different for different platforms.
標簽: computational performance complexity comparison
上傳時間: 2014-12-22
上傳用戶:aig85
我上傳的文件開發環境都是ADS 1.2 ARM網絡開發程序包,內有pdf說明文件。 ZLG/IP提供實現 Internet 網絡上 IP接點的功能,是個高性能的嵌入式 TCP/IP 協議棧軟件。它使用μC/OS-II 實時操作系統的信號機制來實現一個多任務并行并可重入的協議棧,完全使用 ANSI C 進行編寫,可以象μC/OS-II 那樣支持多種 CPU。ZLG/IP還具有層次清晰,易于升級和修改等特點
上傳時間: 2014-11-18
上傳用戶:refent
英文版,pdf格式。 詳細說明: Title: STL Tutorial and Reference Guide: C++ Programming with the Standard Template Library (2nd Edition) URL: http://www.amazon.com/exec/obidos/tg/detail/-/0201379236/ ISBN: 0201379236 Author: David R. Musser / Gillmer J. Derge / Atul Saini / Gilmer J. Derge Publisher: Addison-Wesley Page: 560 Edition: 2nd edition (March 27, 2001) Catalog: C++ Format: PDF Size: 3.8M Supplier: December Summary: The Standard Template Library was created as the first library of genetic algorithms and data structures, with four ideas in mind: generic programming, abstractness without loss of efficiency, the Von Neumann computation model, and value semantics. This guide provides a tutorial, a description of each element of the library, and sample applications. The expanded second edition includes new code examples and demonstrations of the use of STL in real-world C++ software development it reflects changes made to STL for the final ANSI/ISO C++ language standard.
標簽: Programming Reference Standard Tutorial
上傳時間: 2015-09-02
上傳用戶:Breathe0125
有一本講述C語言的書,自出版以來,歷經14載,它一直都被各個書評站點(或書評人)列入“重點推薦” 的清單中。尤為夸張的是,14年來,在它的18次印刷版本中,除去第二次印刷稍微修改過一些問題,以后的17 次印刷,我們居然發現它的內容沒有絲毫的變更!!!對于技術書籍,我想其精確性與權威性也算是奇跡了吧。 這就是Andrew Koenig給我們帶來的C Traps and Pitfalls(《C陷阱與缺陷》)。 非常經典的書籍! 強烈推薦閱讀! 作者簡介: Andrew Koenig AT&T大規模程序研發部(前貝爾實驗室)成員。他從1986年開始從事C語言的研究,1977年加入貝爾實驗室。他編寫了一些早期的類庫,并在1988年組織召開了第一個完全意義上的C++會議。在ISO/ANSI C++委員會成立的1989年,他就加入了該委員會,并一直擔任項目編輯。他已經發表了C++方面的100多篇論文,在Addsion-Wesley出版了C Trap and Pitfalls,還應邀到世界各地演講。
標簽: C語言
上傳時間: 2014-11-29
上傳用戶:xinzhch
作為全球使用最廣泛的C++經典程序設計教材,本書詳細介紹了過程式與面向對象程序設計的基本知識與方法,其中包括C++的強大功能、最新特性和新增的ANSI/ISO C++標準庫。 本書通過面向一個大型對象(電梯模擬系統)的程序設計,以數百個“活代碼”示例程序,重點突出了利用UML進行面向對象的設計。分布在各章的“對象思想”、“案例分析”、“常見編程錯誤”、“良好編程習慣”、“自測題”和“練習題”等特色部分非常具有實際指導意義,不僅可讓接觸C++的新手真實體驗編程樂趣,還可讓有經驗的程序員得到啟發。 本書的讀者對象為計算機軟件、系統和網絡編程人員,也可作為大學計算機相關專業本科生和研究生的編程教材和參考書
上傳時間: 2015-09-08
上傳用戶:lingzhichao
Predefined Style options define the style by setting several other options. If other options are also used, the placement of the predefined style option in the command line is important. If the predefined style option is placed first, the other options may override the predefined style. If placed last, the predefined style will override the other options. For example the style --style=ansi sets the option --brackets=break . If the command line specifies "--style=ansi --brackets=attach", the brackets will be attached and the style will not be ansi style. If the order on the command line is reversed to "--brackets=attach --style=ansi ", the brackets will be broken (ansi style) and the attach option will be ignored. For the options set by each style check the parseOption function in astyle_main.cpp
標簽: options other Predefined setting
上傳時間: 2014-12-21
上傳用戶:zhangliming420
Listed below are the typographical conventions used in this guide. – Example C++ code and commands to be typed by the user are in non-bold characters in typewriter font. – Items where the user has to supply a name or number are given in lower-case italic characters in typewriter font. – Sections marked with a ‡ describe features that are also available in ANSI C.
標簽: typographical conventions commands Example
上傳時間: 2013-12-20
上傳用戶:xiaoxiang
SQL是英文Structured Query Language的縮寫,意思為結構化查詢語言。SQL語言的主要功能就是同各種數據庫建立聯系,進行溝通。按照ANSI(美國國家標準協會)的規定, SQL被作為關系型數據庫管理系統的標準語言。SQL語句可以用來執行各種各樣的操作,例如更新數據庫中的數據,從數據庫中提取數據等。目前,絕大多數流 行的關系型數據庫管理系統,如Oracle, Sybase, Microsoft SQL Server, Access等都采用了SQL語言標準。雖然很多數據庫都對SQL語句進行了再開發和擴展,但是包括Select, Insert, Update, Delete, Create, 以及Drop在內的標準的SQL命令仍然可以被用來完成幾乎所有的數據庫操作。下面,我們就來詳細介紹一下SQL語言的基本知識。
標簽: Structured Language Query SQL
上傳時間: 2013-12-20
上傳用戶:410805624
作為全球使用最廣泛的C++經典程序設計教材,本書詳細介紹了過程式與面向對象程序設計的基本知識與方法,其中包括C++的強大功能、最新特性和新增的ANSI/ISO C++標準庫。本書通過面向一個大型對象(電梯模擬系統)的程序設計,以數百個“活代碼”示例程序,重點突出了利用UML進行面向對象的設計。分布在各章的“對象思想”、“案例分析”、“常見編程錯誤”、“良好編程習慣”、“自測題”和“練習題”等特色部分非常具有實際指導意義,不僅可讓接觸C++的新手真實體驗編程樂趣,還可讓有經驗的程序員得到啟發。本書的讀者對象為計算機軟件、系統和網絡編程人員,也可作為大學計算機相關專業本科生和研究生的編程教材和參考書。
上傳時間: 2015-09-27
上傳用戶:wuyuying
SQL(Structured Query Language,結構查詢語言)是一個功能強大的數據庫語言。SQL通常使用于數據庫的通訊。ANSI(美國國家標準學會)聲稱,SQL是關系數據庫管理系統的標準語言。SQL語句通常用于完成一些數據庫的操作任務,比如在數據庫中更新數據,或者從數據庫中檢索數據。使用SQL的常見關系數據庫管理系統有:Oracle、 Sybase、 Microsoft SQL Server、 Access、 Ingres等等。雖然絕大多數的數據庫系統使用SQL,但是它們同樣有它們自立另外的專有擴展功能用于它們的系統。但是,標準的SQL命令,比如"Select"、 "Insert"、 "Update"、 "Delete"、 "Create"和 "Drop"常常被用于完成絕大多數數據庫的操作。
標簽: Structured Language Query SQL
上傳時間: 2015-10-06
上傳用戶:nairui21