Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Урок 6: Декомпозиция кода
- #include <cassert>
- #include <iostream>
- #include <map>
- #include <string>
- #include <vector>
- using namespace std;
- enum class QueryType {
- NewBus,
- BusesForStop,
- StopsForBus,
- AllBuses,
- };
- struct Query {
- QueryType type;
- string bus;
- string stop;
- vector<string> stops;
- };
- istream& operator>>(istream& is, Query& q) {
- // Реализуйте эту функцию
- return is;
- }
- struct BusesForStopResponse {
- // Наполните полями эту структуру
- };
- ostream& operator<<(ostream& os, const BusesForStopResponse& r) {
- // Реализуйте эту функцию
- return os;
- }
- struct StopsForBusResponse {
- // Наполните полями эту структуру
- };
- ostream& operator<<(ostream& os, const StopsForBusResponse& r) {
- // Реализуйте эту функцию
- return os;
- }
- struct AllBusesResponse {
- // Наполните полями эту структуру
- };
- ostream& operator<<(ostream& os, const AllBusesResponse& r) {
- // Реализуйте эту функцию
- return os;
- }
- class BusManager {
- public:
- void AddBus(const string& bus, const vector<string>& stops) {
- // Реализуйте этот метод
- }
- BusesForStopResponse GetBusesForStop(const string& stop) const {
- // Реализуйте этот метод
- }
- StopsForBusResponse GetStopsForBus(const string& bus) const {
- // Реализуйте этот метод
- }
- AllBusesResponse GetAllBuses() const {
- // Реализуйте этот метод
- }
- };
- // Реализуйте функции и классы, объявленные выше, чтобы эта функция main
- // решала задачу "Автобусные остановки"
- int main() {
- int query_count;
- Query q;
- cin >> query_count;
- BusManager bm;
- for (int i = 0; i < query_count; ++i) {
- cin >> q;
- switch (q.type) {
- case QueryType::NewBus:
- bm.AddBus(q.bus, q.stops);
- break;
- case QueryType::BusesForStop:
- cout << bm.GetBusesForStop(q.stop) << endl;
- break;
- case QueryType::StopsForBus:
- cout << bm.GetStopsForBus(q.bus) << endl;
- break;
- case QueryType::AllBuses:
- cout << bm.GetAllBuses() << endl;
- break;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement