class sorting2 { int *elements; int nbElem; public: sorting2(int *elements, int nbElements); void bubble_sort2(); void selection_sort2(); };