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
| #include <iostream> | |
| #include <string.h> | |
| #define MAX 100 | |
| using namespace std; | |
| /*CLASE PERSONA*/ | |
| class Persona{ |
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++ - Colas con prioridad | |
| * Copyright 2014 Martin Cruz Otiniano | |
| * Description: Se encola caracteres de acuerdo a su prioridad(entero) ingresada. | |
| * Site: martincruz.me | |
| */ | |
| #include <iostream> | |
| #include <stdlib.h> | |
| using namespace std; |
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
| /*JOAQUIN VELEZ LISTA EN C SIN CLASES*/ | |
| #include <iostream> | |
| using namespace std; | |
| struct Nodo{ | |
| int dato; | |
| Nodo *siguiente; |
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
| class Calculadora { | |
| private: | |
| float x, y; | |
| public: | |
| Calculadora(float _x, float _y){ | |
| x=_x; | |
| y=_y; | |
| }; |
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
| /** CREADO POR JOAQUIN VELEZ 27/10/21 **/ | |
| #include <iostream> | |
| #include <string> | |
| #include <stdlib.h> | |
| using namespace std; | |
| #define MAX 50 | |
| struct Nodo{ |
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
| #include <iostream> | |
| using namespace std; | |
| struct nodo{ | |
| int nro; | |
| struct nodo *sgte; | |
| }; | |
| typedef nodo *ptrPila; // creando nodo tipo puntero( tipo de dato ) |