程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 使用C++的StringBuilder提升4350%的性能(1)

使用C++的StringBuilder提升4350%的性能(1)

編輯:C++入門知識

介紹

經常出現客戶端打電話抱怨說:你們的程序慢如蝸牛。你開始檢查可能的疑點:文件IO,數據庫訪問速度,甚至查看web服務。 但是這些可能的疑點都很正常,一點問題都沒有。

你使用最順手的性能分析工具分析,發現瓶頸在於一個小函數,這個函數的作用是將一個長的字符串鏈表寫到一文件中。

你對這個函數做了如下優化:將所有的小字符串連接成一個長的字符串,執行一次文件寫入操作,避免成千上萬次的小字符串寫文件操作。

這個優化只做對了一半。

你先測試大字符串寫文件的速度,發現快如閃電。然後你再測試所有字符串拼接的速度。

好幾年。

怎麼回事?你會怎麼克服這個問題呢?

你或許知道.net程序員可以使用StringBuilder來解決此問題。這也是本文的起點。

背景

如果google一下“C++ StringBuilder”,你會得到不少答案。有些會建議你)使用std::accumulate,這可以完成幾乎所有你要實現的:

  1. #include <iostream>// for std::cout, std::endl  
  2. #include <string>  // for std::string  
  3. #include <vector>  // for std::vector  
  4. #include <numeric> // for std::accumulate  
  5. int main()  
  6. {  
  7.     using namespace std;  
  8.     vector<string> vec = { "hello", " ", "world" };  
  9.     string s = accumulate(vec.begin(), vec.end(), s);  
  10.     cout << s << endl; // prints 'hello world' to standard output.   
  11.     return 0;  

目前為止一切都好:當你有超過幾個字符串連接時,問題就出現了,並且內存再分配也開始積累。

std::string在函數reserver()中為解決方案提供基礎。這也正是我們的意圖所在:一次分配,隨意連接。

字符串連接可能會因為繁重、遲鈍的工具而嚴重影響性能。由於上次存在的隱患,這個特殊的怪胎給我制造麻煩,我便放棄了Indigo我想嘗試一些C++11裡的令人耳目一新的特性),並寫了一個StringBuilder類的部分實現:

  1. // Subset of http://msdn.microsoft.com/en-us/library/system.text.stringbuilder.aspx  
  2. template <typename chr>  
  3. class StringBuilder {  
  4.     typedef std::basic_string<chr> string_t;  
  5.     typedef std::list<string_t> container_t; // Reasons not to use vector below.   
  6.     typedef typename string_t::size_type size_type; // Reuse the size type in the string.  
  7.     container_t m_Data;  
  8.     size_type m_totalSize;  
  9.     void append(const string_t &src) {  
  10.         m_Data.push_back(src);  
  11.         m_totalSize += src.size();  
  12.     }  
  13.     // No copy constructor, no assignement.  
  14.     StringBuilder(const StringBuilder &);  
  15.     StringBuilder & operator = (const StringBuilder &);  
  16. public:  
  17.     StringBuilder(const string_t &src) {  
  18.         if (!src.empty()) {  
  19.             m_Data.push_back(src);  
  20.         }  
  21.         m_totalSize = src.size();  
  22.     }  
  23.     StringBuilder() {  
  24.         m_totalSize = 0;  
  25.     }  
  26.     // TODO: Constructor that takes an array of strings.  
  27.  
  28.  
  29.     StringBuilder & Append(const string_t &src) {  
  30.         append(src);  
  31.         return *this; // allow chaining.  
  32.     }  
  33.         // This one lets you add any STL container to the string builder.   
  34.     template<class inputIterator>  
  35.     StringBuilder & Add(const inputIterator &first, const inputIterator &afterLast) {  
  36.         // std::for_each and a lambda look like overkill here.  
  37.                 // <b>Not</b> using std::copy, since we want to update m_totalSize too.  
  38.         for (inputIterator f = first; f != afterLast; ++f) {  
  39.             append(*f);  
  40.         }  
  41.         return *this; // allow chaining.  
  42.     }  
  43.     StringBuilder & AppendLine(const string_t &src) {  
  44.         static chr lineFeed[] { 10, 0 }; // C++ 11. Feel the love!  
  45.         m_Data.push_back(src + lineFeed);  
  46.         m_totalSize += 1 + src.size();  
  47.         return *this; // allow chaining.  
  48.     }  
  49.     StringBuilder & AppendLine() {  
  50.         static chr lineFeed[] { 10, 0 };   
  51.         m_Data.push_back(lineFeed);  
  52.         ++m_totalSize;  
  53.         return *this; // allow chaining.  
  54.     }  
  55.  
  56.     // TODO: AppendFormat implementation. Not relevant for the article.   
  57.  
  58.     // Like C# StringBuilder.ToString()  
  59.     // Note the use of reserve() to avoid reallocations.   
  60.     string_t ToString() const {  
  61.         string_t result;  
  62.         // The whole point of the exercise!  
  63.         // If the container has a lot of strings, reallocation (each time the result grows) will take a serious toll,  
  64.         // both in performance and chances of failure.  
  65.         // I measured (in code I cannot publish) fractions of a second using 'reserve', and almost two minutes using +=.  
  66.         result.reserve(m_totalSize + 1);  
  67.     //  result = std::accumulate(m_Data.begin(), m_Data.end(), result); // This would lose the advantage of 'reserve'  
  68.         for (auto iter = m_Data.begin(); iter != m_Data.end(); ++iter) {   
  69.             result += *iter;  
  70.         }  
  71.         return result;  
  72.     }  
  73.  
  74.     // like javascript Array.join()  
  75.     string_t Join(const string_t &delim) const {  
  76.         if (delim.empty()) {  
  77.             return ToString();  
  78.         }  
  79.         string_t result;  
  80.         if (m_Data.empty()) {  
  81.             return result;  
  82.         }  
  83.         // Hope we don't overflow the size type.  
  84.         size_type st = (delim.size() * (m_Data.size() - 1)) + m_totalSize + 1;  
  85.         result.reserve(st);  
  86.                 // If you need reasons to love C++11, here is one.  
  87.         struct adder {  
  88.             string_t m_Joiner;  
  89.             adder(const string_t &s): m_Joiner(s) {  
  90.                 // This constructor is NOT empty.  
  91.             }  
  92.                         // This functor runs under accumulate() without reallocations, if 'l' has reserved enough memory.   
  93.             string_t operator()(string_t &l, const string_t &r) {  
  94.                 l += m_Joiner;  
  95.                 l += r;  
  96.                 return l;  
  97.             }  
  98.         } adr(delim);  
  99.         auto iter = m_Data.begin();   
  100.                 // Skip the delimiter before the first element in the container.  
  101.         result += *iter;   
  102.         return std::accumulate(++iter, m_Data.end(), result, adr);  
  103.     }  
  104.  
  105. }; // class StringBuilder 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved