免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: keep_silence
打印 上一主题 下一主题

请教为什么std::map erase() hpux与linux性能差距巨大? [复制链接]

论坛徽章:
0
11 [报告]
发表于 2012-05-09 14:54 |只看该作者
回复 9# wwwsq

写了个测试程序,把key换成指针类型,发现hp和linux相差不大,内存释放慢应该是其中原因之一,应该还有其他的原因,否则速度不会相差那么大。

#include <map>
#include <vector>
#include <list>
#include <stdio.h>
#include <string>
#include <string.h>

#include <sys/time.h>
#include <stdio.h>

static struct timeval tm_begin, tm_end;

#define BEGIN_CALC_TIME gettimeofday (&tm_begin, NULL)
#define END_CALC_TIME gettimeofday (&tm_end, NULL)

#define SHOW_TIME \
do {\
        printf ("time: %lu\n", 1000000 * (tm_end.tv_sec - tm_begin.tv_sec) + (tm_end.tv_usec - tm_begin.tv_usec)); \
} while (0)

struct IdxClient_key
{
        char ClientId[16];
        bool operator < (const IdxClient_key* & s) const
        {
                int ret;
                ret = strcmp (ClientId, s->ClientId);
                if (ret < 0) {
                        return true;
                }
                return false;
        }
};

class ST_Client
{
public:
        ST_Client ()
        {
                memset (this, 0, sizeof (ST_Client));
        }

        char ClientId[16];
        char OpenDate[8];
};

int
main (int argc, char *argv[])
{
        int i = 0;
        std::map<IdxClient_key *, ST_Client *> mapA;
        std::vector<IdxClient_key *> vecA;
        IdxClient_key *pkey;

        vecA.reserve (1000000);

        for (i = 0; i < 1000000; ++i) {
                ST_Client *p = new ST_Client;
                pkey = new IdxClient_key;
                snprintf (p->ClientId, 16, "cid%d", i);
                /// snprintf (p->MemberId, 9, "%d", i);
                snprintf (p->OpenDate, 8, "20120508");

                memcpy (pkey->ClientId, p->ClientId, 16);
                mapA.insert (std::make_pair (pkey, p));
                vecA.push_back (pkey);
        }
        printf ("table size: %d\n", mapA.size ());

        std::vector<IdxClient_key *>::iterator iter = vecA.begin ();
        std::vector<IdxClient_key *>::iterator iter_end = vecA.end ();

BEGIN_CALC_TIME;
#if 1
        for (; iter != iter_end; ++iter) {
                std::map<IdxClient_key *, ST_Client *>::iterator ret = mapA.find (*iter);
                if (ret == mapA.end ()) {
                        printf ("find error.\n");
                        return -1;
                }               
                ST_Client *pClient = (*ret).second;
                mapA.erase (ret);
                delete (*iter);
                delete pClient;
        }
#endif
END_CALC_TIME;
SHOW_TIME;
        printf ("table size: %d\n", mapA.size ());
}

论坛徽章:
0
12 [报告]
发表于 2012-05-09 15:28 |只看该作者
不太清楚LZ用的标准库实现是什么……Rogue Wave?
只知道libstdc++的string是引用计数实现的,光是复制的话可能比其它实现很占便宜。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP