SlideShare a Scribd company logo
Array
Deffi:-
1.An array is a collection same data elements
which is do not change during program
execuation.
2.Array are the collection of a finite number of
homogeneous data elements.
3.Array is a container which can hold a fix number of items and these
items should be of the same type. Most of the data structures make use
of arrays to implement their algorithms. Following are the important
terms to understand the concept of Array.
Element − Each item stored in an array is called
an element.
Index − Each location of an element in an array
has a numerical index, which is used to identify
the element.
Array Representation:-
Arrays can be declared in various ways in different
languages. For illustration, let's take C array
declaration.
35,33,42,10,14,19,27,44,26,31
Name
Type
Size
Elements
35 33 42 10 14 19 27 44 26 31
0 1 2 3 4 5 6 7 8 9
Elements
Index Value
array([0]=35
array([1]=33
array([2]=42
array([3]=10
array([4]=14
array([5]=19
array([6]=27
array([7]=44
array([8]=26
array([9]=31

More Related Content

PPTX
Arrays declartion and initialization
PPTX
Arrays in C
PPT
Numeric Arrays [6]
PPT
Ppt lesson 12
PPTX
Data structures and algorithms arrays
PPT
Presentation of array
PPTX
Data structure
PDF
Data structure lecture 2 (pdf)
Arrays declartion and initialization
Arrays in C
Numeric Arrays [6]
Ppt lesson 12
Data structures and algorithms arrays
Presentation of array
Data structure
Data structure lecture 2 (pdf)

What's hot (20)

PPTX
R data types
PPT
Abstract data types (adt) intro to data structure part 2
DOC
Data structure lecture 2
PPTX
Array in c
PDF
Arrays in C++
PPTX
Array in c programming
PPT
Lecture 2a arrays
PPTX
ARRAY
PPTX
Lesson 11 one dimensional array
PPT
Abstract data types
PDF
Arrays in java
PDF
Arrays in c_language
PPTX
Arrays in c
PPTX
Arrays
PPT
One Dimensional Array
PPTX
Arrays introduction- JAVA
PPTX
PPTX
Data structure and its types
PPTX
OOPs with java
PPT
Data structures using C
R data types
Abstract data types (adt) intro to data structure part 2
Data structure lecture 2
Array in c
Arrays in C++
Array in c programming
Lecture 2a arrays
ARRAY
Lesson 11 one dimensional array
Abstract data types
Arrays in java
Arrays in c_language
Arrays in c
Arrays
One Dimensional Array
Arrays introduction- JAVA
Data structure and its types
OOPs with java
Data structures using C
Ad

Similar to Array (20)

PDF
Arrays
PPTX
Data structures in c#
PPTX
Arrays accessing using for loops
DOCX
Datastructures and algorithms prepared by M.V.Brehmanada Reddy
PPTX
Arrays in Data Structure and Algorithm
DOCX
PPTX
unit 2.pptx
PPTX
Various Operations Of Array(Data Structure Algorithm).pptx
PPTX
Week 11.pptx
PDF
Arrays In C- Logic Development Programming
PDF
Chapter 4 (Part I) - Array and Strings.pdf
PPTX
10 arrays and pointers.pptx for array and pointer
PPT
PDF
PDF
M v bramhananda reddy dsa complete notes
PDF
DSA UNIT II ARRAY AND LIST - notes
PPTX
PPTX
ADVANCED DATA STRUCTURES AND ALGORITHMS.pptx
PDF
12000121037.pdf
PPTX
A singly linked list is a linear data structure
Arrays
Data structures in c#
Arrays accessing using for loops
Datastructures and algorithms prepared by M.V.Brehmanada Reddy
Arrays in Data Structure and Algorithm
unit 2.pptx
Various Operations Of Array(Data Structure Algorithm).pptx
Week 11.pptx
Arrays In C- Logic Development Programming
Chapter 4 (Part I) - Array and Strings.pdf
10 arrays and pointers.pptx for array and pointer
M v bramhananda reddy dsa complete notes
DSA UNIT II ARRAY AND LIST - notes
ADVANCED DATA STRUCTURES AND ALGORITHMS.pptx
12000121037.pdf
A singly linked list is a linear data structure
Ad

More from Sikandar Pandit (8)

PPTX
Online movie ticket booking system
PPTX
Heapify algorithm
DOCX
online movie ticket booking system
PDF
Html tables
PPTX
Access of array
PPTX
Abstract data type
PPTX
User manual on laptop
PPT
Presentation on software company
Online movie ticket booking system
Heapify algorithm
online movie ticket booking system
Html tables
Access of array
Abstract data type
User manual on laptop
Presentation on software company

Recently uploaded (20)

PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
AI in Product Development-omnex systems
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Nekopoi APK 2025 free lastest update
PPTX
history of c programming in notes for students .pptx
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
medical staffing services at VALiNTRY
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
ai tools demonstartion for schools and inter college
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
Transform Your Business with a Software ERP System
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Navsoft: AI-Powered Business Solutions & Custom Software Development
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
CHAPTER 2 - PM Management and IT Context
AI in Product Development-omnex systems
Operating system designcfffgfgggggggvggggggggg
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Understanding Forklifts - TECH EHS Solution
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Nekopoi APK 2025 free lastest update
history of c programming in notes for students .pptx
Upgrade and Innovation Strategies for SAP ERP Customers
medical staffing services at VALiNTRY
Internet Downloader Manager (IDM) Crack 6.42 Build 41
ai tools demonstartion for schools and inter college
wealthsignaloriginal-com-DS-text-... (1).pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Which alternative to Crystal Reports is best for small or large businesses.pdf
Transform Your Business with a Software ERP System

Array

  • 2. Deffi:- 1.An array is a collection same data elements which is do not change during program execuation. 2.Array are the collection of a finite number of homogeneous data elements.
  • 3. 3.Array is a container which can hold a fix number of items and these items should be of the same type. Most of the data structures make use of arrays to implement their algorithms. Following are the important terms to understand the concept of Array. Element − Each item stored in an array is called an element. Index − Each location of an element in an array has a numerical index, which is used to identify the element.
  • 4. Array Representation:- Arrays can be declared in various ways in different languages. For illustration, let's take C array declaration. 35,33,42,10,14,19,27,44,26,31 Name Type Size Elements
  • 5. 35 33 42 10 14 19 27 44 26 31 0 1 2 3 4 5 6 7 8 9 Elements Index Value array([0]=35 array([1]=33 array([2]=42 array([3]=10 array([4]=14 array([5]=19 array([6]=27 array([7]=44 array([8]=26 array([9]=31