Difference between revisions of "Arrays"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
m (D1: DataType Suprression)
 
(20 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
===TRC Video===
 +
<youtube>https://www.youtube.com/watch?v=J6E4Neml7Ho</youtube>
 +
 +
https://www.youtube.com/watch?v=J6E4Neml7Ho
  
 
==Understanding arrays==
 
==Understanding arrays==
 
[[File:Arrays.jpg|200px|thumb|right|People queuing.]]
 
[[File:Arrays.jpg|200px|thumb|right|People queuing.]]
 
<p>Arrays are like a queue of people, but person number 0 is the first person in the queue. Imagine it like the picture on the right. As you can see, you know that if you wanted the 3rd person in the queue you would select them something like "queue person 2" and if you wanted the last person in the queue you would say something like "queue person 4" and if you wanted the first person in the queue, you would say "queue person 0". Essentially, instead of starting counting from 1, you start counting from 0.</p>
 
<p>Arrays are like a queue of people, but person number 0 is the first person in the queue. Imagine it like the picture on the right. As you can see, you know that if you wanted the 3rd person in the queue you would select them something like "queue person 2" and if you wanted the last person in the queue you would say something like "queue person 4" and if you wanted the first person in the queue, you would say "queue person 0". Essentially, instead of starting counting from 1, you start counting from 0.</p>
<p>You should also remember that it is possible to create an array within an array. Think of it as a queue, and in each queue is another queue. These special arrays are called Multidimensional Arrays</p>
+
<p>You should also remember that it is possible to create an array within an array. Think of it as a queue, and in each queue is another queue. These special arrays are called [[#MA|Multidimensional Arrays]]</p>
  
 
==Arrays in C#==
 
==Arrays in C#==
Line 31: Line 35:
 
//five
 
//five
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
<p id="MA">To create a '''Multidimensional Array''' add a comer in the square brackets forming the array, for example:</p>
 +
 +
<tabber>
 +
C#=
 +
<syntaxhighlight lang="csharp" line>
 +
int[,] _2DArray = new int[5,5]; // Creates a 2dimensional Array
 +
_2DArray[2,2] = 7; // Accesses item at index X:2 Y:2 and sets it = to 7
 +
 +
Console.WriteLine("{0} AT X:2 Y:2", _2DArray[2,2]);
 +
</syntaxhighlight>
 +
</tabber>
 +
 +
For '''3Dimensional Arrays''' the same process applies, just with another commer, and the same continues for 4, 5, 6... dimensional arrays.
 +
 +
<tabber>
 +
C#=
 +
<syntaxhighlight lang="csharp" line>
 +
int[,,] _3DArray = new int[5,5,5]; // Creates a 3dimensional Array
 +
_3DArray[2,2,2] = 7; // Accesses item at index X:2 Y:2 Z:2 and sets it = to 7
 +
 +
Console.WriteLine("{0} AT X:2 Y:2 Z:2", _2DArray[2,2,2]);
 +
</syntaxhighlight>
 +
</tabber>
 +
 +
To define the items contained in a three dimensional array during runtime, you must use multiple curly braces ({CURLY}) for each dimension however this becomes impractical for any arrays possesing a dimension greater then 2.
 +
 +
<tabber>
 +
C#=
 +
<syntaxhighlight lang="csharp" line>
 +
int[,] _2DArray = new [,] {
 +
    {1, 2, 3, 4, 5}
 +
    {6, 7, 8, 9, 10}
 +
};
 +
 +
// Creates new array with 2 rows and 5 columns
 +
</syntaxhighlight>
 +
</tabber>
  
 
==Arrays & Repetition==
 
==Arrays & Repetition==
Line 63: Line 105:
  
 
==Downsides==
 
==Downsides==
===D1: DataType Suprression===
+
*An array can only be of a single data type
:A Given array Can Only contain objects of a given data-type (which is set during initialisation of the array). If a person tries to ignore this, such as in the following case (a TraceBack 'DataType' Error will be produced).
+
*Once declared and initialised, memory is allocated for the whole structure even if it is empty
 
+
*Normally they can't be resized once created, ie a Static Data Type.
 
+
*Operations such as removing an element or inserting a value in the middle of the array require excessive processing and movement.
<tabber>
 
C#=
 
<syntaxhighlight lang="csharp" line>
 
int[] intArray = new int[1]; // Creates new array which holds Integers
 
intArray[0] = "String"; // Attempts to add string to intArray
 
// Producing an error
 
</syntaxhighlight>
 
</tabber>
 
 
 
 
 
:However using Object Oriented Programming Concepts (namely Inheritance & Polymorphism) an array can be made to contain Psuedo multiple data types. For example if an interface of type Animal, has two inherited classes Duck & Tiger, both can be added to an array of type Animal with no clipping involved (however if Animal was a class and not an interface, the inherited classes object will be forcefully casted to the class Animal and have some data lossed).
 
  
  
<tabber>
+
For a more detailed examination of these points see: [[Array Downsides extended]]
C#=
 
<syntaxhighlight lang="csharp" line>
 
Interface Animal {
 
    public Output(); // Method
 
 
 
    public int numOfLegs; // instance Value
 
    public String animalName; // instance Value
 
}
 
 
 
class Duck : Animal {
 
    public Duck(int numOfLegs) {
 
        this.numOfLegs = numOfLegs;
 
        this.animalName = "Duck";
 
    }
 
 
 
    public Output() {
 
        Console.WriteLine("{0} has {1} Legs",
 
            this.animalName, this.numOfLegs);
 
    }
 
}
 
 
 
class Tiger : Animal {
 
    public Tiger(int numOfLegs) {
 
        this.numOfLegs = numOfLegs;
 
        this.animalName = "Tiger";
 
    }
 
 
 
    public Output() {
 
        Console.WriteLine("{0} has {1} Legs",
 
            this.animalName, this.numOfLegs);
 
    }
 
}
 
 
 
public Animal[2] animals; // Array Which Can Hold Animals
 
public Tigers[2] tigers; // Array Which Can Hold Tigers
 
public Duck[2] ducks; // Array Which Can Hold Ducks
 
 
 
duck[0] = new Duck(2) // NoError: Adds duck to duck array; Duck Is Duck
 
duck[1] = new Tiger(4); // Error: Adds tiger to duck array; Tiger Isn't Duck
 
 
 
Tiger[0] = new Duck(2) // Error: Adds duck to Tiger array; Duck Isn't Tiger
 
Tiger[1] = new Tiger(4); // NoError: Adds tiger to Tiger array; Tiger Is Tiger
 
 
 
animals[0] = new Tiger(4); // NoError: Adds tiger to animal array; Tiger Is Animal
 
animals[1] = new Duck(2); // NoError: Adds duck to animal array; Duck Is Animal
 
 
 
</syntaxhighlight>
 
</tabber>
 
 
 
 
 
:Expanding on the example above, to prove no data loss has occured you can attempt to use the built in Output function. to view wether any data loss has occured.
 
 
 
 
 
<tabber>
 
C#=
 
<syntaxhighlight lang="csharp" line>
 
animals[0].Output(); // Outputs "Tiger has 4 Legs"
 
animals[1].Output(); // Outputs "Duck has 2 Legs"
 
</syntaxhighlight>
 
</tabber>
 

Latest revision as of 09:21, 23 August 2023

TRC Video

https://www.youtube.com/watch?v=J6E4Neml7Ho

Understanding arrays

People queuing.

Arrays are like a queue of people, but person number 0 is the first person in the queue. Imagine it like the picture on the right. As you can see, you know that if you wanted the 3rd person in the queue you would select them something like "queue person 2" and if you wanted the last person in the queue you would say something like "queue person 4" and if you wanted the first person in the queue, you would say "queue person 0". Essentially, instead of starting counting from 1, you start counting from 0.

You should also remember that it is possible to create an array within an array. Think of it as a queue, and in each queue is another queue. These special arrays are called Multidimensional Arrays

Arrays in C#

There are several ways of declaring arrays in C#. There are several ways shown below:

Creates an empty array that will return integers.

int[] arrayname; // Allocates Array to Memory But Doesn't Initalize It

Creates an empty array that will return integers, but it's size is 10. (10 people in a queue).

arraynumbers = new int[10]; // Allocates &amp Initalises

Creates an array with values for each number in the queue.

int[] numbers = {1, 2, 3, 4, 5};

Don't forget that it can be any data type.

string[] strings = {"one", "two", "three", "four", "five"};

To get something from an array, you can simply do the same as I explained before.

1 string[] strings = {"one", "two", "three", "four", "five"}; //Declares strings as an array of strings.
2 Console.WriteLine(strings[0]); //Writes the first thing in the array
3 Console.WriteLine(strings[2]); //Writes the third thing in the array
4 Console.WriteLine(strings[4]); //Writes the fifth thing in the array
5 //Output:
6 //one
7 //three
8 //five

To create a Multidimensional Array add a comer in the square brackets forming the array, for example:

1 int[,] _2DArray = new int[5,5]; // Creates a 2dimensional Array
2 _2DArray[2,2] = 7; // Accesses item at index X:2 Y:2 and sets it = to 7
3 
4 Console.WriteLine("{0} AT X:2 Y:2", _2DArray[2,2]);

For 3Dimensional Arrays the same process applies, just with another commer, and the same continues for 4, 5, 6... dimensional arrays.

1 int[,,] _3DArray = new int[5,5,5]; // Creates a 3dimensional Array
2 _3DArray[2,2,2] = 7; // Accesses item at index X:2 Y:2 Z:2 and sets it = to 7
3 
4 Console.WriteLine("{0} AT X:2 Y:2 Z:2", _2DArray[2,2,2]);

To define the items contained in a three dimensional array during runtime, you must use multiple curly braces ({CURLY}) for each dimension however this becomes impractical for any arrays possesing a dimension greater then 2.

1 int[,] _2DArray = new [,] {
2     {1, 2, 3, 4, 5}
3     {6, 7, 8, 9, 10}
4 }; 
5 
6 // Creates new array with 2 rows and 5 columns

Arrays & Repetition

A for loop can be used to access every element within a array, this could be to read or write from the array:

1  int[] NumList = new int[1000];
2  Random RanNum = new Random();
3  for (int i = 0; i < 1000; i++) 
4  {
5       NumList[i] = RanNum.Next(1,10000);
6  }

This declares an array of 1000 integers. The for loop will cycle from 0 to the thousandth item and each cycle will add a random number into that element of the array. You could use a for loop to read the list also:

1  for (int i = 0; i < 1000; i++) 
2  {
3       Console.WriteLine(NumList[i]);
4  }

If you only wish to read from the array you could also use a foreach loop:

1  foreach (int value in NumList) 
2  {
3       Console.WriteLine(value);
4  }

Downsides

  • An array can only be of a single data type
  • Once declared and initialised, memory is allocated for the whole structure even if it is empty
  • Normally they can't be resized once created, ie a Static Data Type.
  • Operations such as removing an element or inserting a value in the middle of the array require excessive processing and movement.


For a more detailed examination of these points see: Array Downsides extended