class sorting { int *elements; int nbElem; public: sorting(int *elements, int nbElements); void bubble_sort(); void selection_sort(); };