约 1,940,000 个结果
在新选项卡中打开链接
  1. What is Array? - GeeksforGeeks

    2025年4月12日 · Array is a linear data structure where all elements are arranged sequentially. It is a collection of elements of same data type stored at contiguous memory locations. For …

  2. Array (data structure) - Wikipedia

    In computer science, an array is a data structure consisting of a collection of elements (values or variables), of same memory size, each identified by at least one array index or key, a …

  3. What is an Array? - W3Schools

    What is an Array? An array is a collection of values. The image below shows how we can think of an array named myFruits, with the values 'banana', 'apple', and 'orange' stored inside it.

  4. What is an Array? Types of Array | Great Learning

    2025年1月13日 · What is an Array? An array is a collection of similar data elements stored at contiguous memory locations. It is the simplest data structure where each data element can be …

  5. What is an Array? Understanding the Basics and Defining Array

    An array is a data structure that stores a fixed-size collection of elements such as integers or strings, sequentially in memory. Each element in the array is accessed using an index, starting …

  6. Array in Data Structure: What is, Arrays Operations [Examples]

    2024年11月26日 · An array is a data structure for storing more than one data item that has a similar data type. The items of an array are allocated at adjacent memory locations.

  7. What is an Array? (with Examples) | Intellipaat

    2025年7月25日 · What is an Array? An array is a crucial data structure in computer programming that allows for the organized storage of multiple elements under a single variable name. These …

  8. Array - Microsoft MakeCode Arcade

    Arrays are a very useful way to collect and organize information. There are more advanced operations and functions you can use on arrays. Here’s an example using insertAt to insert a …

  9. Array Introduction - GeeksforGeeks

    2025年7月31日 · Array is a collection of items of the same variable type that are stored at contiguous memory locations. It is one of the most popular and simple data structures used in …

  10. Array - Math.net

    An array is an arrangement of objects, such as numbers, typically in rows and/or columns. A table is a common example of an array. The table above shows a basic array with 5 rows and 3 …