Mostrando 15,241 - 15,260 Resultados de 20,414 Para Buscar 'Urrao~', tiempo de consulta: 0.93s Limitar resultados
  1. 15241
    Publicado 2024
    Tabla de Contenidos: “…-- Definition -- Real-world examples -- Notations for algorithm representation -- Natural language -- Flowchart -- Pseudocode -- Programming language -- Types of algorithms -- Recursive algorithms -- Divide and conquer algorithms -- Back-tracking algorithms -- Greedy algorithms -- Heuristic algorithms -- Dynamic programming -- Brute-force algorithms -- Computational complexity -- Time complexity -- Space complexity -- Summary -- Chapter 3: Arrays and Sorting -- Single-dimensional arrays -- Example - month names -- Multi-dimensional arrays -- Example - multiplication table -- Example - game map -- Jagged arrays -- Example - yearly transport plan -- Sorting algorithms -- Selection sort -- Insertion sort -- Bubble sort -- Merge sort -- Shell sort -- Quicksort -- Heap sort -- Performance analysis -- Summary -- Chapter 4: Variants of Lists -- Simple lists -- Array lists -- Generic lists -- Sorted lists -- Example - address book -- Linked lists -- Singly linked lists -- Doubly linked lists -- Circular singly linked lists -- Circular doubly linked lists -- List-related interfaces -- Summary -- Chapter 5: Stacks and Queues -- Stacks -- Example - Reversing a word -- Example - Tower of Hanoi -- Queues -- Example - Call center with a single consultant…”
    Libro electrónico
  2. 15242
    Publicado 2015
    Tabla de Contenidos: “…-- Types of Constants -- Passing Different Types to Functions -- Overloading function names -- Mixed-mode overloading -- Chapter 15: Arrays -- What Is an Array? -- Declaring an Array -- Indexing into an Array -- Looking at an Example -- Initializing an Array -- Chapter 16: Arrays with Character -- The ASCII-Zero Character Array -- Declaring and Initializing an ASCIIZ Array -- Looking at an Example -- Looking at a More Detailed Example -- Foiling hackers -- Do I Really Have to Do All That Work? …”
    Libro electrónico
  3. 15243
    por Autodesk, Inc.
    Publicado 2007
    Tabla de Contenidos: “…Logical Operators: Not, And, OrIf-Then-Else Statements; List of Operators; Loop Structures; For Loop; Loops with Multiple Statements; While Loops; Collections; Arrays; Array Functions; Printing Arrays; Multidimentional Arrays (Advanced Topic); Wildcards; Structures; Structure Syntax; Structure Constructor Function; Structure Initialization; Structure Member Functions; Calling Functions During Construction of a structure (Advanced Topic); Strings; Concatenation; Findstring; Replace; Converting Between Numbers and Strings; Creating and Running Scripts; Working with Equations…”
    Libro electrónico
  4. 15244
    Publicado 2016
    Tabla de Contenidos: “…Strings und ZeichenString-Typ; String-Verkettung; String-Interpolation (C# 6); String-Vergleiche; In Strings suchen; Strings verändern; Arrays; Standard-Elementinitialisierung; Mehrdimensionale Arrays; Rechteckige Arrays; Ungleichförmige Arrays; Vereinfachter Array-Initialisierungsausdruck; Variablen und Parameter; Der Stack und der Heap; Stack; Heap; Sichere Zuweisung; Vorgabewerte; Parameter; Argumente als Wert übergeben; Der Modifikator ref; Der Modifikator out; Der Modifikator params; Optionale Parameter; Benannte Argumente; var - Implizit typisierte lokale Variablen…”
    Libro electrónico
  5. 15245
    Publicado 2014
    Tabla de Contenidos: “…; Variations on the for Loop; The while Loop; The do-while Loop; The Range-Based for Loop; Nested Loops; Summary; Chapter 4: Arrays, Strings, and Pointers; Handling Multiple Data Values of the Same Type; Arrays; Declaring Arrays; Initializing Arrays; Using the Range-based for Loop; Multidimensional Arrays; Working with C-Style Strings; String Input; String Literals; Using the Range-based for Loop with Strings; Indirect Data Access; What Is a Pointer?…”
    Libro electrónico
  6. 15246
    Publicado 2015
    Tabla de Contenidos: “…Cover; Copyright; Credits; Foreword; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Variables, Arrays, and Hashes; Variables; Objects stored in variables; Arrays; Single-dimension arrays; Jagged arrays; Updating array values; Hashes; Deciding the best container for your scripts; Summary; Chapter 2: Data Parsing and Manipulation; String manipulation; Replacing and splitting strings; Counting and trimming strings; The Trim method; The Substring method; The string true and false methods; Number manipulation and parsing; Formatting numbers…”
    Libro electrónico
  7. 15247
    por Albahari, Ben
    Publicado 2002
    Tabla de Contenidos: “…Static field initialization orderNondeterminism of static constructor calls; Self-Referencing; this keyword; base keyword; Destructors and Finalizers; Nested Types; Interfaces; Defining an Interface; Implementing an Interface; Using an Interface; Extending an Interface; Explicit Interface Implementation; Reimplementing an Interface; Interface Conversions; Arrays; Multidimensional Arrays; Local and Field Array Declarations; Array Length and Rank; Bounds Checking; Array Conversions; Enums; Enum Operators; Enum Conversions; Delegates; Multicast Delegates…”
    Libro electrónico
  8. 15248
    por Albahari, Joseph
    Publicado 2008
    Tabla de Contenidos: “…Equality and Comparison OperatorsConditional Operators; Strings and Characters; Char Conversions; String Type; String concatenation; String comparisons; Searching within strings; Manipulating strings; Arrays; Default Element Initialization; Value types versus reference types; Multidimensional Arrays; Rectangular arrays; Jagged arrays; Simplified Array Initialization Expressions; Bounds Checking; Variables and Parameters; The Stack and the Heap; Stack; Heap; Definite Assignment; Default Values; Parameters; Passing arguments by value; The ref modifier; The out modifier…”
    Libro electrónico
  9. 15249
    Publicado 2015
    Tabla de Contenidos: “…Chapter 2: Variables, Types, and OperationsVariables, naming conventions, and comments; Types; Integers; Floating point numbers; Elementary mathematical functions and operations; Rational and complex numbers; Characters; Strings; Formatting numbers and strings; Regular expressions; Ranges and arrays; Other ways to create arrays; Some common functions for arrays; How to convert an array of chars to a string; Dates and times; Scope and constants; Summary; Chapter 3: Functions; Defining functions; Optional and keyword arguments; Anonymous functions; First-class functions and closures…”
    Libro electrónico
  10. 15250
    Publicado 2013
    Tabla de Contenidos: “….; Local and Global Variables; Defining Variables; Global Variables; Local Variables; Conditional Statements; If-Then Statements; Logical Operators: Not, And, Or; If-Then-Else Statements; List of Operators; Loop Structures; For Loop; Loops with Multiple Statements; While Loops; Collections; Arrays; Array Functions; Printing Arrays; Multidimensional Arrays (Advanced Topic); Wildcards; Structures; Structure Syntax; Structure Constructor Function; Structure Initialization; Structure Member Functions…”
    Libro electrónico
  11. 15251
    Publicado 2010
    Tabla de Contenidos: “…String TypeString concatenation; String comparisons; Searching within strings; Manipulating strings; Arrays; Default Element Initialization; Multidimensional Arrays; Rectangular arrays; Jagged arrays; Simplified Array Initialization Expressions; Variables and Parameters; The Stack and the Heap; Stack; Heap; Definite Assignment; Default Values; Parameters; Passing arguments by value; The ref modifier; The out modifier; The params modifier; Optional parameters (C# 4.0); Named arguments (C# 4.0); var-Implicitly Typed Local Variables; Expressions and Operators; Assignment Expressions…”
    Libro electrónico
  12. 15252
    por Stefanov, Stoyan
    Publicado 2013
    Tabla de Contenidos: “…Primitive Data Types, Arrays, Loops, and Conditions -- Variables -- Variables are case sensitive -- Operators -- Primitive data types -- Finding out the value type - the typeof operator -- Numbers -- Octal and hexadecimal numbers -- Exponent literals -- Infinity -- NaN -- Strings -- String conversions -- Special strings -- Booleans -- Logical operators -- Operator precedence -- Lazy evaluation -- Comparison -- Undefined and null -- Primitive data types recap -- Arrays -- Adding/updating array elements -- Deleting elements -- Arrays of arrays -- Conditions and loops -- The if condition -- The else clause -- Code blocks -- Checking if a variable exists -- Alternative if syntax -- Switch -- Loops -- While loops -- Do-while loops -- For loops -- For-in loops -- Comments -- Summary -- Exercises -- 3. …”
    Libro electrónico
  13. 15253
    Publicado 1994
    Tabla de Contenidos: “…El Auto de San Nicolás / Cortés de Arras / El pregón del herbolario / El mozo y el ciego…”
    Libro
  14. 15254
    Publicado 2015
    Lectura limitada a 1 usuario concurrente.
    Libro electrónico
  15. 15255
    por Rosenthal, Franz, 1914-2003
    Publicado 1988
    Libro
  16. 15256
    Publicado 1982
    Revista
  17. 15257
    Publicado 1986
    Libro
  18. 15258
    Publicado 1987
    “…In Shooting Stars, Archie McDonald, scholar and self-confessed cowboy hero worshipper, presents a rich, informative array of essays on our favorite Western stars. These twelve contributions by established scholars of Western film review the biographical and cinematic lives of stars from the 1920s to the present; together, they constitute a unique collection and a fitting tribute to the influence of these heroes on our lives…”
    Libro electrónico
  19. 15259
    por Sutherland, Douglas
    Publicado 2014
    “…Against this background, this paper looks at a vast array of policy recommendations by the OECD that promote longterm growth – contained in Going for Growth and the Economic Outlook – and attempts to establish whether they underpin macroeconomic stability or whether there is a trade-off…”
    Capítulo de libro electrónico
  20. 15260
    Publicado 1962
    Libro