This file contains 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
/* | |
Name: Representacion enlazada de un grafo | |
Author: Joel Fernandez | |
Date: 01/12/12 23:43 | |
Web: http://codebotic.blogspot.com | |
Description: programa que muestra un grafo en su forma enlazada | |
*/ | |
#include<iostream.h> | |
#include<conio.h> |
This file contains 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
/* | |
Autor: Joel Cesar Fernandez Segura | |
Curso: Estructura de Datos | |
Ejercicio: CONTACTOS DE TELEFONO | |
IDE: CodeBlocks | |
Pagina Web: http://codebotic.blogspot.com | |
*/ | |
#include<iostream> | |
#include<cstdlib> | |
#define maxchar 50 |
This file contains 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
/* | |
Autor: Joel Cesar Fernandez Segura | |
Curso: Estructura de Datos | |
Ejercicio: VENTA DE POSTRES | |
IDE: CodeBlocks | |
Pagina Web: http://codebotic.blogspot.com | |
*/ | |
#include<iostream> | |
#include<cstdlib> |
This file contains 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
/* | |
Autor: Joel Cesar Fernandez Segura | |
Curso: Estructura de Datos | |
Ejercicio: REGISTRAR PACIENTES | |
IDE: CodeBlocks | |
Pagina Web: http://codebotic.blogspot.com | |
*/ | |
#include<iostream> |
This file contains 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
/* | |
Autor: Joel Cesar Fernandez Segura | |
Curso: Estructura de Datos | |
Ejercicio: REGISTRAR INTEGRANTES DE FAMILIA | |
IDE: CodeBlocks | |
Pagina Web: http://codebotic.blogspot.com | |
*/ | |
#include<iostream> | |
#include<cstdlib> |
This file contains 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
/* Autor: Joel Cesar Fernandez Segura | |
Fecha: 28/08/2014 | |
Tema: Recursividad | |
Ejercicio 2: Suma de los n primeros numeros naturales | |
IDE: CodeBlocks | |
Pagina Web: http://codebotic.blogspot.com | |
*/ | |
#include<iostream> | |
#include<cstdlib> |
This file contains 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
/* | |
Autor: Joel Cesar Fernandez Segura | |
Curso: Tecnicas De Construccion de Programas | |
Ejercicio: Implementacion de un Automata Con Pila | |
IDE: CodeBlocks | |
Pagina Web: http://codebotic.blogspot.com | |
*/ | |
#include<iostream> | |
#include<cstdlib> |
This file contains 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
/* | |
Autor: Joel Fernandez | |
Curso: Estructura de Datos | |
Ejercicio: IMPLEMENTACION DE UNA LISTA CIRCULAR | |
Descripcion: funciones inserta, elimina, busca y elimina | |
IDE: CodeBlocks | |
Pagina Web: http://codebotic.blogspot.com | |
*/ |
This file contains 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
/* | |
Autor: Joel Fernandez | |
Fecha: 11/10/14 | |
Tema : Listas Enlazadas Simples | |
Ejercicio 2 : Almacenar una lista de reales y reportarlos en forma ordenada. | |
*/ | |
#include <iostream> | |
#include <stdlib.h> |
This file contains 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
/* | |
Name: Convertir expresion matematica en notacion infija a postfija | |
Author: Joel Fernandez | |
Date: 16/11/12 20:29 | |
Description: expresion matematica en notacion infija y la transforma a postfija | |
web: http://codebotic.blogspot.com | |
Compartido para casicodigo.blogspot.com | |
*/ |
OlderNewer