Array Data Structure

  • Last Updated : 26 Sep, 2023

Complete Guide to Arrays
Learn more about Array in DSA Self Paced Course
Practice Problems on Arrays
Top Quizzes on Arrays

What is Array?

An array is a collection of items stored at contiguous memory locations. The idea is to store multiple items of the same type together. This makes it easier to calculate the position of each element by simply adding an offset to a base value, i.e., the memory location of the first element of the array (generally denoted by the name of the array).

Array Data Structure

The above image can be looked as a top-level view of a staircase where you are at the base of the staircase. Each element can be uniquely identified by their index in the array (in a similar way as you could identify your friends by the step on which they were on in the above example).

Topics :

Array Introduction:

  1. What is Array
  2. Introduction to Arrays – Data Structure and Algorithm Tutorials
  3. Applications, Advantages and Disadvantages of Array

Introduction of Array in Different language:

  1. Arrays in C/C++
  2. Arrays in Java
  3. Arrays in Python
  4. Arrays in C#
  5. Arrays in Javascript

Basic Operations:

  1. Searching in Array
  2. Write a program to reverse an array
  3. Complete Guide On Array Rotations – Data Structure and Algorithms Tutorial
  4. Search, insert and delete in an unsorted array
  5. Search, insert and delete in a sorted array
  6. Sort an Array
  7. Generate all subarrays

Standard problem on Array:

Quick Links :

Recomended:

If you like GeeksforGeeks and would like to contribute, you can also write an article and mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above