欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

数据结构总结之map

程序员文章站 2024-02-20 19:23:16
...

1.map

#include <iostream>
#include <map>
using namespace std;
map<int,int> hash;
int main()
{
    int a,b,c,d,e;
    int i,j,k;
    cin>>a>>b>>c>>d>>e;
    for(i=-50;i<=50;i++)
        for(j=-50;j<=50;j++)
    {
        if(i==0 || j==0) continue;
        int temp=a*i*i*i+b*j*j*j;
        if(hash.find(temp)!=hash.end())
            hash[temp]++;
        else
            hash[temp]=1;
    }
    long long count=0;
    for(i=-50;i<=50;i++)
        for(j=-50;j<=50;j++)
        for(k=-50;k<=50;k++)
    {
        if(i==0 || j==0 || k==0) continue;
        int temp=-(c*i*i*i+d*j*j*j+e*k*k*k);
        if(hash.find(temp)==hash.end()) continue;
            count+=hash[temp];
    }
    cout<<count;
    return 0;
}

2.map.end()返回的迭代器it,要自减一次,才是map最后一个;
map.erase()、map.empty()、map.clear()
map的迭代器有first、second,用”->”,不用”.”
3.char tmp[]=”22233344455566677778889999”;这一步很巧妙,虽然经常用~