如何避免构造新字符串?

时间:2016-11-27 15:44:28

标签: c++ string vector data-structures hashtable

我有一个模拟2D矢量的1D char矢量(这是一个要求)。该向量是000111,它相当于2D的向量[0] = 000和向量[1] = 111。所以它有两个字符串,长度相同(在这种情况下为3)。我想将每个字符串设置为std::unordered_map中的键,所以我正在做:

#include <iostream>
#include <unordered_map>
#include <string>
#include <vector>

int main ()
{
  std::unordered_map<std::string, int> mymap;
  std::vector<char> keys(2 * 3); // 2 keys, each one of length 3
  for(int i = 0; i < 2; ++i)
  {
    for(int j = 0; j < 3; ++j)
    {
      keys[j + i * 3] = (i) ? '1' : '0';
    }
  }
  // keys = 000111

  for(int i = 0; i < 2; ++i)
  {
    mymap[std::string(keys.begin() + i * 3, keys.begin() + (i + 1) * 3)] = i;
  }

  for (auto& x: mymap) {
    std::cout << x.first << ": " << x.second << std::endl;
  }

  /*
  Output:
  111: 1
  000: 0
  */

  return 0;
}

这使我不高兴,因为我必须构造一个新的字符串,然后将其插入到地图中。如果我可以一步到位地放置它或者其他东西,那就太好了。我可以吗?

1 个答案:

答案 0 :(得分:1)

我认为这是c ++ 17 string_view的直接替代品。 string_view不拥有任何字符串,因此const-ness可能是个问题(请参阅插入地图时的const-cast)

唯一必须做出的改变是

  1. const-cast,你必须解决这个问题。
  2. 多图的类型。
  3. 请注意#endif
  4. 上的using语句

    我只是将一个类,一个hash-struct(在std ::!中)和一些重载用于你的代码。

    #include <iostream>
    #include <unordered_map>
    #include <string>
    #include <vector>
    #ifdef HAS_STRING_VIEW
    #include <string_view>
    #else
    
    class lps_noz_view{
    public:
        lps_noz_view() = delete;
        lps_noz_view(const char* start, size_t size):start(start), stop(start + size){}
        lps_noz_view(const lps_noz_view& ) = default;
        lps_noz_view(lps_noz_view&& ) = default;
        const char* begin(){  return start;}
        const char* end(){  return stop;}
        const char* begin() const{  return start;}
        const char* end() const{  return stop;}
        std::string to_string() const{  return std::string(start, stop);}
    private:
        const char* start;
        const char* stop;
    };
    
    bool operator < (const lps_noz_view& lhs, const lps_noz_view& rhs){
        return lhs.to_string() < rhs.to_string();  
        // or use strncmp to avoid creating strings =)
    }
    
    bool operator == (const lps_noz_view& lhs, const lps_noz_view& rhs){
        return lhs.to_string() == rhs.to_string();  
        // strncmp
    }
    std::ostream& operator << (std::ostream& os, const lps_noz_view& rhs){
        return os << rhs.to_string();
    }
    
    namespace std{
    template<>
    struct hash<lps_noz_view>
    {
        using argument_type = lps_noz_view;
        using result_type = size_t;
        size_t operator()(const lps_noz_view& arg) const{
            return std::hash<std::string>()(std::string(arg.begin(), arg.end()));
        }
    };
    };
    
    using string_view = lps_noz_view;
    #endif
    // 
    int main ()
    {
      std::unordered_map<string_view, int> mymap;
      std::vector<char> keys(2 * 3); // 2 keys, each one of length 3
      for(int i = 0; i < 2; ++i)
      {
        for(int j = 0; j < 3; ++j)
        {
          keys[j + i * 3] = (i) ? '1' : '0';
        }
      }
      // keys = 000111
    
      for(int i = 0; i < 2; ++i)
      {
        mymap[string_view(const_cast<const char*>(&(*keys.begin()) + i * 3), 
                (i + 1) * 3)] = i;
      }
    
      for (auto& x: mymap) {
        std::cout << x.first << ": " << x.second << std::endl;
      }
    
      /*
      Output:
      111: 1
      000: 0
      */
    
      return 0;
    }