diff options
| author | Mitsuo Tokumori <[email protected]> | 2022-12-04 23:13:28 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <[email protected]> | 2022-12-04 23:13:28 -0500 |
| commit | 8e01ba134a230e47e8b80351dd8abc8c3b72e683 (patch) | |
| tree | 3f0e174c80cc4a6e4a2aa2b5351f4dad66b49d89 /2022-2/L10/mitsuo/Nodo.cpp | |
| parent | ce58d6504665422a0817cf0ddb38fc533d0de33e (diff) | |
| download | LP1-8e01ba134a230e47e8b80351dd8abc8c3b72e683.tar.gz LP1-8e01ba134a230e47e8b80351dd8abc8c3b72e683.tar.bz2 LP1-8e01ba134a230e47e8b80351dd8abc8c3b72e683.zip | |
Add my solution for L10
Diffstat (limited to '2022-2/L10/mitsuo/Nodo.cpp')
| -rw-r--r-- | 2022-2/L10/mitsuo/Nodo.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/2022-2/L10/mitsuo/Nodo.cpp b/2022-2/L10/mitsuo/Nodo.cpp new file mode 100644 index 0000000..450bca8 --- /dev/null +++ b/2022-2/L10/mitsuo/Nodo.cpp @@ -0,0 +1,25 @@ +/* + * File: Nodo.cpp + * Author: mitsuo + * + * Created on 02 December 2022, 12:38 + */ + +#include <iostream> +#include <iomanip> +#include "Nodo.h" + +using namespace std; + +Nodo::Nodo() { + this->med = nullptr; + this->izq = nullptr; + this->der = nullptr; +} + +Nodo::Nodo(const Nodo& orig) { +} + +Nodo::~Nodo() { +} + |
