Array
Types of Array Sizes
Types of Arrays
Example
// Array example
var simple_array = [1, 2, 3, 4, 5];
// Jagged Array
var jagged_array = [[1, 2, 3], [4, 5], [6, 7, 8, 9]];
//Two Dimensinal Array ( 2 Rows,3 Columns)
var two_dimensinal = new int[2,3]
{
{2, 5, 9},
{6, 9, 15}
};Operations of the array in data structure
Complexity Table
Operation
Best Case
Average Case
Worst Case
Last updated