#include "stdafx.h"//del
#include <iostream>
#include <string>
using namespace std;
int main()
{
int count = 0;
std::string input = "bcagdfe";
cout << "before: " <<input;
// Сортировка массива пузырьком
for (int i = 0; i < input.size() - 1; i++)
{
for (int j = 0; j < input.size() - i - 1; j++)
{
if (input.at(j) > input.at(j + 1))
{
// меняем элементы местами
string tmp = " ";
tmp.at(0) = input.at(j);
input.at(j) = input.at(j + 1);
input.at(j + 1) = tmp.at(0);
}
}
}
cout << endl << "after: " << input <<endl;
return 0;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.