
const int MAX = 500;

typedef int Vector [MAX];

class Conjunto
{
   public:
      void IniciarConjunto (void);
      bool AnadirElemento (int);
      bool BorrarElemento (int);
      bool EsConjuntoVacio (void);
      bool Pertenece (int);

   private:
      int n;
      Vector v;
};

