lasd/librerie/exercise3/binarytree/lnk/binarytreelnk.hpp

102 lines
2.2 KiB
C++
Raw Normal View History

2021-04-24 16:58:05 +02:00
#ifndef BINARYTREELNK_HPP
#define BINARYTREELNK_HPP
/* ************************************************************************** */
#include "../binarytree.hpp"
/* ************************************************************************** */
namespace lasd {
/* ************************************************************************** */
template <typename Data>
class BinaryTreeLnk { // Must extend BinaryTree<Data>
private:
// ...
protected:
// using BinaryTree<Data>::???;
// ...
struct NodeLnk { // Must extend Node
private:
// ...
protected:
// ...
public:
// ...
};
public:
// Default constructor
// BinaryTreeLnk() specifiers;
/* ************************************************************************ */
// Specific constructors
// BinaryTreeLnk(argument) specifiers; // A binary tree obtained from a LinearContainer
/* ************************************************************************ */
// Copy constructor
// BinaryTreeLnk(argument) specifiers;
// Move constructor
// BinaryTreeLnk(argument) specifiers;
/* ************************************************************************ */
// Destructor
// ~BinaryTreeLnk() specifiers;
/* ************************************************************************ */
// Copy assignment
// type operator=(argument) specifiers;
// Move assignment
// type operator=(argument) specifiers;
/* ************************************************************************ */
// Comparison operators
// type operator==(argument) specifiers;
// type operator!=(argument) specifiers;
/* ************************************************************************ */
// Specific member functions (inherited from BinaryTree)
// type Root() specifiers; // Override BinaryTree member (throw std::length_error when empty)
/* ************************************************************************ */
// Specific member functions (inherited from Container)
// type Clear() specifiers; // Override Container member
};
/* ************************************************************************** */
}
#include "binarytreelnk.cpp"
#endif