制作本書的目的是為了方便大家的閱讀。轉載時請保持本電子書的完整性。 前言、條款2、16、21、44根據從Addison-Wesley出版社下載的開放條款翻譯。條款26、27、28、45根據從Scott Meyers的網站下載的《Three Guidelines for Effective Iterator Usage》一文翻譯。條款43根據從C/C++ Users Journal網站下載的《STL Algorithms vs. Hand-Written loops》一文翻譯,條款45根據從C/C++ Users Journal網站下載的《Distinguishing STL Search Algorithms》一文翻譯。其余部分根據epubcn放出的電子書制作。
標簽: Addison-Wesley 家 保持
上傳時間: 2015-04-12
上傳用戶:jing911003
To increase simulation speed, ModelSim® can apply a variety of optimizations to your design. These include, but are not limited to, mergingprocesses, pulling constants out of loops, clock suppression, and signal collapsing. You control the level of optimization by specifying certain switches when you invoke the compiler.
標簽: optimizations simulation ModelSim increase
上傳時間: 2013-12-25
上傳用戶:pkkkkp
This a translation of the ToyFDTD c code available from the web site http://www.borg.umn.edu/toyfdtd/ToyFDTD1.html This some optimization to use MATLAB matrix notation. Others may find a way to further optimize the nested loops.
標簽: translation available the ToyFDTD
上傳時間: 2013-12-07
上傳用戶:daoxiang126
Written by the inventors of the technology, The Java™ Language Specification, Third Edition, is the definitive technical reference for the Java™ programming language. If you want to know the precise meaning of the language s constructs, this is the source for you. The book provides complete, accurate, and detailed coverage of the Java programming language. It provides full coverage of all new features added since the previous edition, including generics, annotations, asserts, autoboxing, enums, for-each loops, variable arity methods, and static import clauses.
標簽: Specification technology the inventors
上傳時間: 2016-01-26
上傳用戶:youmo81
詞典 Time Limit:3000MS Memory Limit:65536K Total Submit:2349 Accepted:603 Description 你旅游到了一個國外的城市。那里的人們說的外國語言你不能理解。不過幸運的是,你有一本詞典可以幫助你。 Input 首先輸入一個詞典,詞典中包含不超過100000個詞條,每個詞條占據一行。每一個詞條包括一個英文單詞和一個外語單詞,兩個單詞之間用一個空格隔開。而且在詞典中不會有某個外語單詞出現超過兩次。詞典之后是一個空行,然后給出一個由外語單詞組成的文檔,文檔不超過100000行,而且每行只包括一個外語單詞。輸入中出現單詞只包括小寫字母,而且長度不會超過10。 Output 在輸出中,你需要把輸入文檔翻譯成英文,每行輸出一個英文單詞。如果某個外語單詞不在詞典中,就把這個單詞翻譯成“eh”。 Sample Input dog ogday cat atcay pig igpay froot ootfray loops oopslay atcay ittenkay oopslay Sample Output cat eh loops Hint 輸入比較大,推薦使用C語言的I / O函數。
標簽: Limit Description Accepted 65536K
上傳時間: 2016-02-22
上傳用戶:fandeshun
CELP (CELl Processing) is a functional programming package for Matlab. It is often better to use FP instead of loops: - it s more compact - it s more clear.
標簽: programming Processing functional package
上傳時間: 2013-12-19
上傳用戶:netwolf
This text shows how to analyze programs without its source code, using a debugger and a disassembler, and covers hacking methods including virtual functions, local and global variables, branching, loops, objects and their hierarchy, and more.
標簽: disassembler debugger programs analyze
上傳時間: 2013-12-23
上傳用戶:ljmwh2000
how to add arrays * Use of const (constant) values. * Creation of vectors. * Passing vectors as function arguments. * Reading from files of unknown size (monitoring istream status). * Repetitive structures (while and for loops). * The increment operators (++). * Selection structures (if-else statements). * Use of the .size, .empty, .begin, .insert, .erase, .resize, .clear and .swap vector class member functions.
標簽: Creation constant Passing vectors
上傳時間: 2017-04-25
上傳用戶:1079836864
As a programming language, C is rather like Pascal or Fortran.. Values are stored in variables. Programs are structured by defining and calling functions. Program flow is controlled using loops, if statements and function calls. Input and output can be directed to the terminal or to files. Related data can be stored together in arrays or structures.
標簽: programming variables language Fortran
上傳時間: 2017-05-18
上傳用戶:hongmo
program to solve a finite difference discretization of Helmholtz equation : (d2/dx2)u + (d2/dy2)u - alpha u = f using Jacobi iterative method. COMMENTS: OpenMP version 3: 1 PR outside the iteration loop, 4 Barriers Directives are used in this code to achieve paralleism. All do loops are parallized with default static scheduling.
標簽: discretization difference Helmholtz equation
上傳時間: 2014-01-11
上傳用戶:bruce5996