Common Structures

View Code

Array

Array/Vector
a structure type which holds several values of one data type
Index/Element
a specific value from the array
Length/Size
the number of elements in an array, also known as size
Static
a type of array that cannot change its length
Dynamic
a type of array that can change its length
Parellel
a two arrays processed together in which elements corespond

String

String
an array of characters
Length/Size
the number of characters in an array
Substr
a common function used to get different a different section of the
Find
a common function use to find strings or characters in a string
Concatination
a function used to join strings together
Compare
a common function to compare strings

Matrixes

Matrix
an array of arrays, a mutiple dimension array
Row
the first access of a matrix to get an array
Column
the second acces of a matrix, to ge the element

Prev -- Back to Portal -- Next