Advertisement
rgoerv

VerticalPermutation

Apr 5th, 2025 (edited)
328
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 <string>
  3. #include <algorithm>
  4. #include <vector>
  5. #include <cstdint>
  6. #include <unordered_map>
  7. #include <cmath>
  8.  
  9. using namespace std::string_literals;
  10.  
  11. std::string VerticalPermutationENcode(const std::vector<int>& Key, const std::string& StrForENcoding)
  12. {
  13.     std::unordered_map<int, std::string> ENCodeTable;
  14.  
  15.     const std::vector<int> sortedKey = ([&Key]() {
  16.         std::vector<int> SortedKeyBuf(Key);
  17.         std::sort(SortedKeyBuf.begin(), SortedKeyBuf.end());
  18.         return SortedKeyBuf;
  19.     })();
  20.  
  21.     size_t TableLen = Key.size();
  22.     size_t keyIdx = 0;
  23.  
  24.     for(const int& key_part : sortedKey) {
  25.         std::string vertical;
  26.         for(size_t idx = keyIdx; idx < StrForENcoding.length(); idx += TableLen)
  27.         {
  28.             vertical.push_back(StrForENcoding[idx]);
  29.         }
  30.         ENCodeTable[key_part] = vertical;
  31.         ++keyIdx;
  32.     }
  33.     std::string ENCodedStr;
  34.     for(const int& key_part : Key) {
  35.         ENCodedStr.append(ENCodeTable[key_part]);
  36.     }
  37.     return ENCodedStr;
  38. }
  39.  
  40. static std::string VerticalPermutationDEcode(const std::vector<int>& Key, const std::string& StrForDEcoding)
  41. {
  42.     const size_t str_size = StrForDEcoding.size();
  43.     const size_t TableLen = Key.size();
  44.     const size_t ver_max_size = ceil((double)str_size / (double)TableLen);
  45.     const size_t ver_res = (str_size % TableLen);
  46.  
  47.     const std::vector<int> sortedKey =  ([&Key]() {
  48.         std::vector<int> SortedKeyBuf(Key);
  49.         std::sort(SortedKeyBuf.begin(), SortedKeyBuf.end());
  50.         return SortedKeyBuf;
  51.     })();
  52.  
  53.     std::unordered_map<int, std::string> SortedKeyToStrForDecode;
  54.  
  55.     size_t len = 0;
  56.     size_t curr_len = ver_max_size;
  57.  
  58.     for(size_t i = 0; i < TableLen; ++i, len += curr_len) {
  59.         curr_len = Key[i] <= ver_res ? ver_max_size : ver_max_size - 1;
  60.         SortedKeyToStrForDecode[Key[i]] = StrForDEcoding.substr(len, curr_len);
  61.     }
  62.  
  63.     std::vector<std::string> strkey;
  64.     std::string decoded_str = ""s;
  65.  
  66.     for(const auto& key : sortedKey) {
  67.         strkey.push_back(SortedKeyToStrForDecode[key]);
  68.     }
  69.  
  70.     for(size_t i = 0; i < ver_max_size; ++i) {
  71.         for(auto& str : strkey) {  
  72.             decoded_str.push_back(str[i]);
  73.         }
  74.     }
  75.     return decoded_str;
  76. }
  77.  
  78. int main()
  79. {
  80.     setlocale(LC_ALL, "");
  81.  
  82.     static std::string str_for_encoding = "Пример работы шифра вертикальной перестановки"s;
  83.     std::vector<int> key = { 3, 1, 4, 5, 2 };
  84.  
  85.     std::cout << str_for_encoding << std::endl;
  86.     std::string encoded_str = VerticalPermutationENcode(key, str_for_encoding);
  87.     std::cout << encoded_str << std::endl
  88.     << VerticalPermutationDEcode(key, encoded_str) << std::endl;
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement