class sorting3 { int *toSort; int length; public: sorting3(int *elements, int nbElements); void bubble(); void selection(); };