c++效能之map實現效能比較

來源:互聯網
上載者:User

標籤:效能   sina   count()   操作   相對   art   insert   pause   定義   

http://www.cnblogs.com/zhjh256/p/6346501.html講述了基本的map操作,在測試的時候,發現map的效能極為低下,與java相比相差了接近200倍。測試的邏輯如下:

    // map定義    map<int, FirstCPPCls*> mapStudent;    for (i=0;i<10000;i++) {        FirstCPPCls clz;        clz.setAppVersion("12.32.33");        clz.setClusterName("osm-service");        clz.setCompanyId("239383");        clz.setServiceId("sysL.1.223");        clz.setSubSystemId("23");        clz.setSystemId("32");        mapStudent.insert(pair<int, FirstCPPCls*>(i, &clz));    }    // 擷取時間相對計數器, vc專用    begin = GetTickCount();    for (j=0;j<100;j++) {        for (f=0;f<10000;f++) {            // map尋找            mapStudent.find(f);        }    }    end = GetTickCount();    // 列印時間差    cout << "Map尋找耗時:" << (end - begin) << endl;  // 平均4秒左右    system("pause");

在java中相同的實現,get 100 0000次只花費了20ms。於是搜尋 c++ map效能,看了兩個文章如下:

http://blog.csdn.net/a418382926/article/details/22302907

http://blog.sina.com.cn/s/blog_5f93da790101hxxi.html

http://www.ideawu.net/blog/archives/751.html

隨後,進行hash_map和unordered_map測試,如下:

    // hash_map定義    hash_map<int, FirstCPPCls*> hash_mapStudent;    for (i=0;i<10000;i++) {        FirstCPPCls clz;        clz.setAppVersion("12.32.33");        clz.setClusterName("osm-service");        clz.setCompanyId("239383");        clz.setServiceId("sysL.1.223");        clz.setSubSystemId("23");        clz.setSystemId("32");        hash_mapStudent.insert(pair<int, FirstCPPCls*>(i, &clz));    }    // 擷取時間相對計數器, vc專用    begin = GetTickCount();    for (j=0;j<100;j++) {        for (f=0;f<10000;f++) {            // map尋找            hash_mapStudent.find(f);        }    }    end = GetTickCount();    // 列印時間差    cout << "HashMap尋找耗時:" << (end - begin) << endl;  // 平均4秒左右    system("pause");    // hash_map定義    unordered_map<int, FirstCPPCls*> unordered_mapStudent;    for (i=0;i<10000;i++) {        FirstCPPCls clz;        clz.setAppVersion("12.32.33");        clz.setClusterName("osm-service");        clz.setCompanyId("239383");        clz.setServiceId("sysL.1.223");        clz.setSubSystemId("23");        clz.setSystemId("32");        unordered_mapStudent.insert(pair<int, FirstCPPCls*>(i, &clz));    }    // 擷取時間相對計數器, vc專用    begin = GetTickCount();    for (j=0;j<100;j++) {        for (f=0;f<10000;f++) {            // map尋找            unordered_mapStudent.find(f);        }    }    end = GetTickCount();    // 列印時間差    cout << "UnorderedMap尋找耗時:" << (end - begin) << endl;  // 平均4秒左右    system("pause");

輸出如下:

HashMap尋找耗時:1610請按任意鍵繼續. . .UnorderedMap尋找耗時:1797請按任意鍵繼續. . .

雖然,相比std::map,確實提升了50%多,但是跟java,還是慢的一塌糊塗,因為對stl還沒有研究,不確定具體什麼原因導致。

c++效能之map實現效能比較

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.