Tag Archives: #Mastery26

Mastery26

Mastery26
here is my video
http://youtu.be/jxwiXn2ADRQ

Mastery26

Mastery26
here is my video
http://youtu.be/jxwiXn2ADRQ

Mastery26

Mastery26
here is my video
http://youtu.be/jxwiXn2ADRQ

Mastery 26

26

1017

here a useful video for crating matrixes, there are more functionalities but this is just the basic for creating and understand them

https://www.youtube.com/watch?v=o3-EAYBrOSM

 

#Mastery26 was also shown over at the Sudoku video, #TC1017! Matrixes: Vectors of vectors! https://www.youtube.com/watch?v=xabtOZocRCM

26 was also shown over at the Sudoku video, 1017! Matrixes: Vectors of vectors!
https://www.youtube.com/watch?v=xabtOZocRCM

#Mastery26 #TC1014

26 1014

In this tutorial I talk about the creation and use of strings in python.

Youtube link:

https://youtu.be/IE_YH-I214s

Creation and use of strings in Python

AQUI LES DEJO EL LINK DEL VIDEO DONDE EXPLICO

https://www.dropbox.com/s/tg2j7mseogkmvfg/Mastery%2026.avi?dl=0

 

26

1014

#Mastery26 – Creation and use of matrixes in C++

Creación y uso de matrices en C++

La sintaxis de una matriz es C++ es la siguiente:

1
int matrix[rows][cols];

En este ejemplo int es el tipo de dato, matrix es el nombre del todo el conjunto de datos y debo de especificar el numero de filas (rows) y columnas (cols).

Las matrices también pueden ser de distintos tipos de datos como char, float, double, etc. Las matrices en C++ se almacenan al igual que los vectores en posiciones consecutivas de memoria.

Podriamos imaginarnos que una matriz es como un tablero, pero en realidad el manejo es como su definición lo indica, un vector de vectores, es decir, los vectores están uno detrás del otro juntos.

Para acceder a los elementos de la matriz es utilizando su nombre e indicando los 2 subíndices que van en los corchetes.

Si coloco int matriz[2][3] = 10; estoy asignando al cuarto elemento de la tercera fila el valor 10.

Es importante tener en cuenta que tanto filas como columnas se enumeran a partir de 0. Para recorrer una matriz es buena idea hacer uso de un bucle. En este caso usando 2 for:

2
3
4
5
for(int i = 0; i
  for(int j = 0; j
    matrix[i][j] = i % j;
  }
}

 

 

Para mas información acerca de matrices dinamicas pueden consultar el siguiente enlace: https://ronnyml.wordpress.com/2009/07/04/vectores-matrices-y-punteros-en-c/

 

1017 26

Mastery 26

Creation and use of matrixes in C++ (multi – dimensional arrays)

Two-Dimensional Arrays:

The simplest form of the multidimensional array is the two-dimensional array. A two-dimensional array is, in essence, a list of one-dimensional arrays. To declare a two-dimensional integer array of size x,y, you would write something as follows:

Where type can be any valid C++ data type and arrayName will be a valid C++ identifier.

A two-dimensional array can be think as a table, which will have x number of rows and y number of columns. A 2-dimensional array a, which contains three rows and four columns can be shown as below:

Mastery 26

Thus, every element in array a is identified by an element name of the form a[ i ][ j ], where a is the name of the array, and i and j are the subscripts that uniquely identify each element in a.

Initializing Two-Dimensional Arrays:

Multidimensioned arrays may be initialized by specifying bracketed values for each row. Following is an array with 3 rows and each row have 4 columns.

The nested braces, which indicate the intended row, are optional. The following initialization is equivalent to previous example:

Accessing Two-Dimensional Array Elements:

An element in 2-dimensional array is accessed by using the subscripts, i.e., row index and column index of the array. For example:

The above statement will take 4th element from the 3rd row of the array. You can verify it in the above digram.

When the above code is compiled and executed, it produces the following result:

As explained above, you can have arrays with any number of dimensions, although it is likely that most of the arrays you create will be of one or two dimensions.

Credits:

http://www.tutorialspoint.com/cplusplus/cpp_multi_dimensional_arrays.htm

1017 26

Mastery26

Strings

Son las frases o palabras que tenemos en nuestro programa, podemos sumarlas, restarlas, etc.

Link: https://github.com/LizethAcosta/Tareas/blob/master/Mastery26

26