This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * C++ - 脕rboles Binarios de B煤squeda | |
| * Copyright 2014 Martin Cruz Otiniano | |
| * Description : Funciones de Insercion, Busqueda, Eliminacion, Recorridos por niveles(amplitud), Altura, Arbol reflejo, Contar hojas. | |
| * Site : martincruz.me | |
| */ | |
| #include <iostream> | |
| #include <stdlib.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Bresenham3D | |
| // | |
| // A slightly modified version of the source found at | |
| // http://www.ict.griffith.edu.au/anthony/info/graphics/bresenham.procs | |
| // Provided by Anthony Thyssen, though he does not take credit for the original implementation | |
| // | |
| // It is highly likely that the original Author was Bob Pendelton, as referenced here | |
| // | |
| // ftp://ftp.isc.org/pub/usenet/comp.sources.unix/volume26/line3d | |
| // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Criba de Eratostenes - C++ | |
| * Copyright 2014 Martin Cruz Otiniano | |
| * Description : Esta funcion devuelve un vector(STL) con los numeros primos hasta un rango n enviado como parametro. | |
| * Site : martincruz.me | |
| */ | |
| #include <iostream> | |
| #include <vector> | |
| #include <cmath> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * C++ - Operaciones en Zn | |
| * Copyright 2014 J. Martin Cruz Otiniano | |
| * Description : Contiene los metodos de adici贸n, multiplicicaci贸n, inverso multiplicativo, divisi贸n y exponenciaci贸n. | |
| * Site : martincruz.me | |
| */ | |
| #include "OperacionZn.h" | |
| OperacionZn::OperacionZn() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * C++ - Metodo de dispersion (Hashing) | |
| * Copyright 2013 Martin Cruz Otiniano | |
| * Site: martincruz.me | |
| */ | |
| #include <iostream> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * C++ - Arbol binario de busqueda aplicado en archivos | |
| * Copyright 2013 Martin Cruz Otiniano | |
| * Description : Tiene las funciones de insertar registro en un nodo (escribir), mostrar los registros | |
| * haciendo uso del algoritmo y eliminar archivo ABB. | |
| * Site : martincruz.me | |
| */ | |
| #include <iostream> | |
| #include <stdio.h> |
NewerOlder