Advertisement
myloyo

vector list 2

Jun 7th, 2023 (edited)
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.45 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. #include <vector>
  4. #include <algorithm>
  5. #include <string>
  6. #include <fstream>
  7. #include <sstream>
  8. #include <set>
  9. #include <map>
  10. #include "list.h"
  11.  
  12. using namespace std;
  13. ifstream in("input.txt");
  14. ofstream out("output.txt");
  15.  
  16. class Forum {
  17. public:
  18.     string nick, town;
  19.     int age;
  20.     Forum() {}
  21.     Forum(string nick, string town, int age) {
  22.         setNick(nick);
  23.         setTown(town);
  24.         setAge(age);
  25.     }
  26.     void setNick(string nick) {
  27.         this->nick = nick;
  28.     }
  29.     void setTown(string town) {
  30.         this->town = town;
  31.     }
  32.     void setAge(int age) {
  33.         this->age = age;
  34.     }
  35.     void printout() {
  36.         cout << nick << " " << town << " " << age << endl;
  37.     }
  38. };
  39.  
  40. int main() {
  41.     vector <Forum> vec(4);
  42.     list <Forum> lst;
  43.     vec[0] = Forum("myloyo", "saratov", 18);
  44.     vec[1] = Forum("skrpopova", "saratov", 15);
  45.     vec[2] = Forum("karych", "saratov", 15);
  46.     vec[3] = Forum("soap", "moscow", 100);
  47.    
  48.     //буква а
  49.     Forum h;
  50.     cin >> h.nick >> h.town >> h.age;
  51.     bool p = 1;
  52.     for (auto x : vec) {
  53.         if (x.nick == h.nick) {
  54.             p = 0;
  55.         }
  56.     }
  57.     if (p) {
  58.         vec.push_back(h);
  59.     }
  60.    
  61.     for (auto x : vec) {
  62.         x.printout();
  63.     }
  64.  
  65.     int n;
  66.     cin >> n;
  67.     string nn, tt;
  68.     cin >> nn >> tt;
  69.     vec[n].setNick(nn);
  70.     vec[n].setTown(tt);
  71.  
  72.     for (auto x : vec) {
  73.         x.printout();
  74.     }
  75.     cout << endl << endl;
  76.  
  77.     // буква б
  78.     for (auto x : vec) {
  79.         lst.insert(lst.getlength(), x);
  80.     }
  81.  
  82.     for (int i = 0; i < lst.getlength(); i++) {
  83.         lst[i].printout();
  84.     }
  85.     cout << endl;
  86.     Forum z;
  87.     cin >> z.nick >> z.town >> z.age;
  88.     lst.insert(0, z);
  89.     cout << endl;
  90.  
  91.     for (int i = 0; i < lst.getlength(); i++) {
  92.         lst[i].printout();
  93.     }
  94.  
  95.     string k;
  96.     cin >> k;
  97.     int r = 0;
  98.     for (int i = 0; i < lst.getlength(); i++) {
  99.         if (lst[i].nick.length() == k.length()) {
  100.             for (int j = 0; j < k.length(); j++) {
  101.                 if (k[j] != lst[i].nick[j]) {
  102.                     r++;
  103.                 }
  104.             }
  105.             if (r <= 1) {
  106.                 lst.insert(lst.getlength(), lst[i]);
  107.                 lst.remove(i);
  108.             }
  109.         }
  110.     }
  111.  
  112.     for (int i = 0; i < lst.getlength(); i++) {
  113.         lst[i].printout();
  114.     }
  115. }
  116.  
  117. soup saratov 17
  118. 2
  119. kkkkr spb
  120. idk msk 900
  121. soap
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement