Introduction to Arrays
Introduction to Arrays
Introduction to Arrays
• Introduction to Arrays
• Declaration of Arrays
• Types of Arrays
• Operations on Arrays
• Searching Techniques in Arrays
• Binary Search
Introduction to Arrays
Pseudo code:
```
if arr[i] == target:
return i
return -1
Binary Search