#include <iostream>
using namespace std;
unsigned DigitSum( unsigned x ) {
unsigned sum = 0;
while ( x != 0 ) {
sum += x % 10;
x /= 10;
}
return sum;
bool Comparison( const unsigned a, const unsigned b ) {
return DigitSum( a ) < DigitSum( b );
// третий параметр указатель на функцию сравнения для сортировки
void InsertionSort( unsigned long *arr, size_t size, bool (*compareFunc)( const unsigned, const unsigned ) ) {
for ( size_t i = 1; i < size; ++i )
for ( size_t j = i; j > 0 && Comparison( arr[ j - 1 ], arr[ j ] ); --j )
swap( arr[ j - 1 ], arr[ j ] );
int main() {
const size_t maxCount = 10000;
unsigned long* arr = new unsigned long[ maxCount ];
size_t count = 0;
cin >> count;
for ( size_t i = 0; i < count; ++i ) {
cin >> arr[ i ];
// сортируем массив, указывая какая функция для сравнения элементов используется
InsertionSort( arr, count, Comparison );
for ( size_t i = 0; i < count; ++i )
cout << arr[ i ] << " ";
delete[] arr;
return 0;
дайте 5 звёзд позязя
#include <algorithm>
#include <vector>
int sumDigit(int c)
{
int sum = 0;
while(c)
sum += c % 10;
c /= 10;
int main()
vector <int> vec;
int n;
cin >> n;
for(int i = 0; i < n; ++i)
int tmp;
cin >> tmp;
vec.push_back(tmp);
for(int i = 0; i < n - 1; ++i)
for(int j = i + 1; j < n; ++j)
if(sumDigit(vec[i]) < sumDigit(vec[j]))
swap(vec[i], vec[j]);
for(auto & ch : vec)
cout << ch << ' ';
#include <iostream>
using namespace std;
unsigned DigitSum( unsigned x ) {
unsigned sum = 0;
while ( x != 0 ) {
sum += x % 10;
x /= 10;
}
return sum;
}
bool Comparison( const unsigned a, const unsigned b ) {
return DigitSum( a ) < DigitSum( b );
}
// третий параметр указатель на функцию сравнения для сортировки
void InsertionSort( unsigned long *arr, size_t size, bool (*compareFunc)( const unsigned, const unsigned ) ) {
for ( size_t i = 1; i < size; ++i )
for ( size_t j = i; j > 0 && Comparison( arr[ j - 1 ], arr[ j ] ); --j )
swap( arr[ j - 1 ], arr[ j ] );
}
int main() {
const size_t maxCount = 10000;
unsigned long* arr = new unsigned long[ maxCount ];
size_t count = 0;
cin >> count;
for ( size_t i = 0; i < count; ++i ) {
cin >> arr[ i ];
}
// сортируем массив, указывая какая функция для сравнения элементов используется
InsertionSort( arr, count, Comparison );
for ( size_t i = 0; i < count; ++i )
cout << arr[ i ] << " ";
delete[] arr;
return 0;
}
дайте 5 звёзд позязя
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int sumDigit(int c)
{
int sum = 0;
while(c)
{
sum += c % 10;
c /= 10;
}
return sum;
}
int main()
{
vector <int> vec;
int n;
cin >> n;
for(int i = 0; i < n; ++i)
{
int tmp;
cin >> tmp;
vec.push_back(tmp);
}
for(int i = 0; i < n - 1; ++i)
{
for(int j = i + 1; j < n; ++j)
{
if(sumDigit(vec[i]) < sumDigit(vec[j]))
{
swap(vec[i], vec[j]);
}
}
}
for(auto & ch : vec)
cout << ch << ' ';
return 0;
}