Advertisement
MadCortez

Untitled

Nov 18th, 2021
759
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.72 KB | None | 0 0
  1. #include <iostream>
  2. #include <set>
  3. #include <vector>
  4. #include <string>
  5. #include <string.h>
  6.  
  7. using namespace std;
  8.  
  9. #define pb push_back
  10. #define mp make_pair
  11.  
  12. const string correctStart = "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM_йцукенгшщзхъфывапролджэячсмитьбюёЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮЁ";
  13. const string correctSymb = "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM_йцукенгшщзхъфывапролджэячсмитьбюёЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮЁ1234567890";
  14.  
  15. bool checkFirstSymb(string s) {
  16.     for (int i = 0; i < correctStart.size(); i++)
  17.         if (s[0] == correctStart[i])
  18.             return true;
  19.     return false;
  20. }
  21.  
  22. bool checkFullString(string s) {
  23.     for (int i = 1; i < s.size(); i++) {
  24.         bool isCorrect = false;
  25.         for (int j = 0; j < correctSymb.size() && !isCorrect; j++)
  26.             if (s[i] == correctSymb[j])
  27.                 isCorrect = true;
  28.         if (!isCorrect)
  29.             return false;
  30.     }
  31.     return true;
  32. }
  33.  
  34. void printAns(vector<string> a, set<string> b) {
  35.     string notFound = "No correct substrings found";
  36.     cout << "Found all correct substrings: \n";
  37.     if (a.size() > 0)
  38.         for (int i = 0; i < a.size(); i++)
  39.             cout << a[i] << ' ';
  40.     else
  41.         cout << notFound;
  42.     cout << "\nFound unique correct substrings: \n";
  43.     set<string> ::iterator it;
  44.     if (b.size() > 0)
  45.         for (it = b.begin(); it != b.end(); ++it)
  46.             cout << *it << " ";
  47.     else
  48.         cout << notFound;
  49. }
  50.  
  51. pair<vector<string>, set<string>> findSubstrings(string s) {
  52.     vector<string> ansFull;
  53.     set<string> ansUnique;
  54.     bool isFind = false;
  55.     string toPush;
  56.     for (int i = 0; i < s.size(); i++) {
  57.         isFind = false;
  58.         for (int j = 0; j < correctStart.size(); j++)
  59.             if (s[i] == correctStart[j]) {
  60.                 isFind = true;
  61.                 toPush = "";
  62.                 for (int c = i; c < s.size() && isFind; c++) {
  63.                     isFind = false;
  64.                     for (int k = 0; k < correctSymb.size() && !isFind; k++)
  65.                         if (s[c] == correctSymb[k])
  66.                             isFind = true;
  67.                     if (isFind) {
  68.                         toPush += s[c];
  69.                         ansFull.pb(toPush);
  70.                         if (ansUnique.find(toPush) == ansUnique.end())
  71.                             ansUnique.insert(toPush);
  72.                     }
  73.                 }
  74.             }
  75.     }
  76.     return mp(ansFull, ansUnique);
  77. }
  78.  
  79. void checkStringForCorrect(string s) {
  80.     if (checkFirstSymb(s))
  81.         if (checkFullString(s))
  82.             cout << "True\n";
  83.         else
  84.             cout << "False\n";
  85.     else
  86.         cout << "False\n";
  87. }
  88.  
  89. int main(int argc, char* argv[]) {
  90.     setlocale(LC_ALL, "Russian");
  91.     string input;
  92.     cout << "Enter your string:\n";
  93.     getline(cin, input);
  94.     cout << "The result of checking the correctness of the entered string: ";
  95.     checkStringForCorrect(input);
  96.     pair<vector<string>, set<string>> ans = findSubstrings(input);
  97.     printAns(ans.first, ans.second);
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement