أساسيات البرمجة سي شارب - المصفوفات متعددة الابعاد مصفوفة المصفوفة C# - Jagged Arrays
المصفوفات متعددة الابعاد مصفوفة المصفوفةJagged arrays
مصفوفة المصفوقة:-
مصفوفة المصفوفة هي عبارة عن مصفوفة عادية ولكن عناصرها تكون مصفوفات وليس بيانات عادية. يمكن تصريح مصفوفة المصفوفة لاي نوع بيانات المعروفة مثل الاعداد الصحيحة.
int [][] scores;
كما ذكرنا في درس المصفوفات السابق التصريح عن المصفوفة لا يعني اننا هيئنا المصفوفة اي انشأنها في الذاكرة ولذلك لتهئية المصفوفة نكتب الكود التالي.
int[][] scores = new int[5][];
for (int i = 0; i < scores.Length; x++)
{
scores[i] = new int[4];
}
for (int i = 0; i < scores.Length; x++)
{
scores[i] = new int[4];
}
وايضا يمكنك من تهئية المصفوفة كالتالي:
int[][] scores = new int[2][]{new int[]{92,93,94},new int[]{85,66,87,88}};
حيث ان المصفوفة score هي مصفوفة لمصفوفتين الاول score 0 هي مصفوفة لثلاث عناصر من نوع اعداد الصحيحة.
والمصفوفة الثانية هي score 1 هي مصفوفة من اربع عناصر من نوع اعداد صحيحة.
مثال على مصفوفة المصفوفات
using System;
namespace ArrayApplication
{
class MyArray
{
static void Main(string[] args)
{
/*مصفوفة من خمس عناصر من نوع عدد صحيح */
int[][] a = new int[][]{new int[]{0,0},new int[]{1,2},
new int[]{2,4},new int[]{ 3, 6 }, new int[]{ 4, 8 } };
int i, j;
/* مخرجات المصفوفة */
for (i = 0; i < 5; i++)
{
for (j = 0; j <; 2; j++)
{
Console.WriteLine("a[{0}][{1}] = {2}", i, j, a[i][j]);
}
}
Console.ReadKey();
}
}
}
namespace ArrayApplication
{
class MyArray
{
static void Main(string[] args)
{
/*مصفوفة من خمس عناصر من نوع عدد صحيح */
int[][] a = new int[][]{new int[]{0,0},new int[]{1,2},
new int[]{2,4},new int[]{ 3, 6 }, new int[]{ 4, 8 } };
int i, j;
/* مخرجات المصفوفة */
for (i = 0; i < 5; i++)
{
for (j = 0; j <; 2; j++)
{
Console.WriteLine("a[{0}][{1}] = {2}", i, j, a[i][j]);
}
}
Console.ReadKey();
}
}
}
ناتج مثال على مصفوفة المصفوفات
a[0][0]: 0
a[0][1]: 0
a[1][0]: 1
a[1][1]: 2
a[2][0]: 2
a[2][1]: 4
a[3][0]: 3
a[3][1]: 6
a[4][0]: 4
a[4][1]: 8
a[0][1]: 0
a[1][0]: 1
a[1][1]: 2
a[2][0]: 2
a[2][1]: 4
a[3][0]: 3
a[3][1]: 6
a[4][0]: 4
a[4][1]: 8
Ahmed Ata Almahallawi
Freelancer
IT
IT Help Desk,
SEO experience,PHP,C#,ASPX
SEO experience,PHP,C#,ASPX
Al alamee st
gaza -jabalia, Gaza Strip
Palestine
ahmed.almahallawi@gmail.com
DOB: 05/10/1984
by +Ahmed Almahallawi
by +Ahmed Almahallawi
24/11/2013
التسميات: csharp-basic
<< الصفحة الرئيسية