-
Notifications
You must be signed in to change notification settings - Fork 0
/
12.11.2023.cpp
78 lines (59 loc) · 2 KB
/
12.11.2023.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// ConsoleApplication9.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <algorithm>
#include <iostream>
#include <cmath>
#include <vector>
#include <Windows.h>
using namespace std;
class Person {
private:
string name;
int age;
public:
Person(string n, int a) : name(move(n)), age(a) {}
string getName() const { return name; }
int getAge() const { return age; }
};
class Town {
private:
int floor;
int apartments;
int firstFloor;
public:
Town(int f, int a) : floor(f), apartments(a), firstFloor(rand() % 2) {}
int getFloor() const { return floor; }
int getApartments() const { return apartments; }
int getFirstFloor() const { return firstFloor; }
};
vector<int> sortFloors(const vector<Town>& towns) {
vector<int> floorApartments(towns.size());
auto comparator = [](const Town& a, const Town& b) {
return a.getApartments() < b.getApartments();
};
vector<Town> sortedTowns = towns;
sort(sortedTowns.begin(), sortedTowns.end(), comparator);
for (size_t i = 0; i < sortedTowns.size(); ++i) {
floorApartments[i] = sortedTowns[i].getFloor();
}
return floorApartments;
}
int main() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
vector<Town> towns = {
Town(5, 10),
Town(10, 5),
Town(7, 8),
};
cout << "Исходный порядок этажей:" << endl;
for (const auto& town : towns) {
cout << town.getFloor() << " этажей, " << town.getApartments() << " квартир на первом этаже" << endl;
}
vector<int> sortedFloors = sortFloors(towns);
cout << "\nОтсортированный порядок этажей:" << endl;
for (const auto& floor : sortedFloors) {
cout << floor << " этажей" << endl;
}
return 0;
}