From 8e01ba134a230e47e8b80351dd8abc8c3b72e683 Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Sun, 4 Dec 2022 23:13:28 -0500 Subject: Add my solution for L10 --- 2022-2/L10/mitsuo/Nodo.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 2022-2/L10/mitsuo/Nodo.cpp (limited to '2022-2/L10/mitsuo/Nodo.cpp') 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 +#include +#include "Nodo.h" + +using namespace std; + +Nodo::Nodo() { + this->med = nullptr; + this->izq = nullptr; + this->der = nullptr; +} + +Nodo::Nodo(const Nodo& orig) { +} + +Nodo::~Nodo() { +} + -- cgit v1.2.3