Mostrando 2,601 - 2,620 Resultados de 292,018 Para Buscar '"C "', tiempo de consulta: 0.42s Limitar resultados
  1. 2601
    Publicado 2024
    Tabla de Contenidos: “…Intro -- Title page -- Copyright and credits -- Dedication -- Contributors -- Table of Contents -- Preface -- Part 1: Mastering std::vector -- Chapter 1: The Basics of std::vector -- Technical requirements -- The significance of std::vector -- A basic comparison of C-style arrays and std::vector -- Comparison of C-style arrays and std::vector for memory management -- Declaring and initializing std::vector -- Declaring a vector -- Initializing a vector -- Accessing elements -- Random access -- Accessing the first and last elements -- Vector size -- Adding and removing elements -- Adding elements -- Removing elements -- Capacity -- Prefer using empty() when possible -- Clearing all elements -- Summary -- Chapter 2: Mastering Iterators with std::vector -- Technical requirements -- Types of iterators in the STL -- Input iterators -- Output iterators -- Forward iterators -- Reverse iterators -- Bidirectional iterators -- Random access iterators -- Basic iteration techniques with std::vector -- Iterating over std::vector -- Basic iteration using iterators -- Using constant iterators -- Benefits of iteration -- Using std::begin and std::end -- Understanding iterator requirements -- Range-based for loops -- Overview of range-based for loops -- When to use range-based for loops -- Modifying elements during iteration -- Creating a custom iterator -- The appeal of custom iterators -- Core requirements -- Iterator categories and their specialties -- A custom iterator example -- Custom iterator challenges and use cases -- Illustrative use cases of custom iterators -- Summary -- Chapter 3: Mastering Memory and Allocators with std::vector -- Technical requirements -- Understanding capacity versus size -- Revisiting the basics -- What exactly is capacity? …”
    Libro electrónico
  2. 2602
    por Cèsar, Gai Juli, 100 aC-44 aC
    Publicado 1678
    Tabla de Contenidos: “…Hirtii Commentariorum de bello africano", "A Hirtii Commentariorum de bello hispaniensi" i C. Iulii Caesaris Fragmenta ex libris epistolarum ad M.T. …”
    Libro
  3. 2603
    Publicado 2024
    Materias: “…C++ (Computer program language)…”
    Libro electrónico
  4. 2604
    Publicado 1985
    Libro electrónico
  5. 2605
    Publicado 2023
    Materias: “…C# (Computer program language)…”
    Libro electrónico
  6. 2606
    por Mak, Ronald
    Publicado 2024
    Materias:
    Libro electrónico
  7. 2607
    Publicado 2024
    Tabla de Contenidos:
    Libro electrónico
  8. 2608
    Publicado 2024
    Tabla de Contenidos:
    Libro electrónico
  9. 2609
    Publicado 2024
    Materias:
    Libro electrónico
  10. 2610
    Publicado 2024
    Materias:
    Vídeo online
  11. 2611
    Publicado 2022
    Materias:
    Libro electrónico
  12. 2612
    Publicado 2021
    Materias:
    Video
  13. 2613
    por Akepogu, Ananda Rao
    Publicado 1900
    Tabla de Contenidos: “…Cover -- Data Structures and Algorithms Using C++ -- Copyright -- Contents -- About the Authors -- Preface -- Acknowledgements -- Chapter 1 Introduction to C++ -- 1.1 Introduction -- 1.2 Class Overview -- 1.2.1 Class -- 1.2.2 Objects -- 1.2.3 Class Members -- 1.3 I/O Streams -- 1.4 Access Control -- 1.5 Class Scope -- 1.6 Static Class Members -- 1.6.1 Static Member Variables -- 1.6.2 Static Member Function -- 1.6.3 Static Object -- 1.7 Functions -- 1.7.1 Parameter Passing Methods -- 1.7.2 Inline Functions -- 1.7.3 The friend Function -- 1.7.4 Function Overloading -- 1.8 The this Pointer -- 1.9 Dynamic Memory Allocation and Deallocation -- 1.9.1 The new Operator -- 1.9.2 The delete Operator -- 1.10 Exception Handling -- Summary -- Exercises -- Chapter 2 Object Oriented Concepts -- 2.1 Goals and Principles -- 2.1.1 Object Oriented Design Goals -- 2.1.2 Object Oriented Design Principles -- 2.2 Constructors and Destructors -- 2.2.1 Constructors -- 2.2.2 Constructor Overloading -- 2.2.3 Destructors -- 2.3 Operator Overloading -- 2.3.1 Overloading the Plus (+) Operator -- 2.3.2 Overloading the Minus (-) Operator -- 2.3.3 Overloading Unary Operators -- 2.3.4 Postfix Form of Overloading the Unary Operator ++ -- 2.3.5 Prefix Form of Overloading the Unary Operator -- -- 2.3.6 Postfix Form of Overloading the Unary Operator -- -- 2.4 Inheritance -- 2.4.1 Base Class Access Control -- 2.4.2 Types of Inheritance -- 2.4.3 Reasons for the Usage of Inheritance -- 2.4.4 Advantages -- 2.4.5 Disadvantages -- 2.4.6 Delegation -- 2.5 Polymorphism -- 2.5.1 Virtual Functions -- 2.5.2 Pure Virtual Functions -- 2.6 Abstract Classes -- 2.7 Generic Programming with Templates -- 2.7.1 Function Templates -- 2.7.2 Class Templates -- 2.8 Recursion -- Summary -- Exercises -- Chapter 3 Algorithms -- 3.1 Introduction -- 3.2 Basic Notations -- 3.2.1 Pseudo Code…”
    Libro electrónico
  14. 2614
  15. 2615
    por Anita, Goel
    Publicado 2016
    Tabla de Contenidos: “…2: Data Representation and Programming Fundamentals -- 2.1 Data Representation -- 2.2 Number System -- 2.2.1 Decimal Number System -- 2.2.2 Binary Number System -- 2.2.3 Octal Number System -- 2.2.4 Hexadecimal Number System -- 2.3 Conversion from Decimal to Binary, Octal, Hexadecimal -- 2.3.1 Converting Decimal Integer to Binary, Octal, Hexadecimal -- 2.3.2 Converting Decimal Fraction to Binary, Octal, Hexadecimal -- 2.3.3 Converting Decimal Integer.Fraction to Binary, Octal, Hexadecimal -- 2.4 Conversion of Binary, Octal, Hexadecimal to Decimal -- 2.5 Conversion of Binary to Octal, Hexadecimal -- 2.6 Conversion of Octal, Hexadecimal to Binary -- 2.7 Binary Arithmetic -- 2.7.1 Binary Addition -- 2.7.2 Binary Subtraction -- 2.8 Signed and Unsigned Numbers -- 2.8.1 Complement of Binary Numbers -- 2.9 Binary Data Representation -- 2.9.1 Fixed Point Number Representation -- 2.9.2 Floating Point Number Representation -- 2.10 Binary Coding Schemes -- 2.10.1 EBCDIC -- 2.10.2 ASCII -- 2.10.3 Unicode -- 2.11 Logic Gates -- 2.12 Programming Fundamentals -- 2.13 Program Development Life Cycle -- 2.14 Algorithm -- 2.15 Control Structures -- 2.16 Flowchart -- 2.16.1 Flowchart Symbols -- 2.16.2 Preparing a Flowchart -- 2.17 Pseudo Code -- 2.17.1 Preparing a Pseudo Code -- 2.18 Programming Paradigms -- 2.18.1 Structured Programming -- 2.18.2 Object-Oriented Programming (OOP) -- 2.18.3 Aspect-Oriented Programming (AOP) -- 2.19 Problem Formulation and Problem Solving -- 2.19.1 Problem Solving -- 2.19.2 Problem Formulation -- 2.20 Summary -- Exercise Questions -- Conceptual Questions and Answers -- Additional Questions -- Programming Exercise -- Part - II: Basics of C Programming -- 3: Data Types, Variables and Constants -- 3.1 Introduction -- 3.2 C Standards -- 3.2.1 Kernighan & Ritchie (K&R) C Standard -- 3.2.2 ANSI C/Standard C/C89 Standard…”
    Libro electrónico
  16. 2616
    Publicado 2021
    Materias:
    Grabación no musical
  17. 2617
    Publicado 2022
    Grabación musical
  18. 2618
    Publicado 2020
    Materias:
    Video
  19. 2619
    Publicado 2024
    Materias:
    Vídeo online
  20. 2620
    Publicado 2022
    Materias:
    Video