POJ 1002 用map容器写的,自己运行对了,提交确实 wrong answer,怎么回事

#include <iostream>
using namespace std;

#include <string>
#include <map>

char AlphaToInteger(char ch);
void printTelNum(string str);

int main()
{
	int n=0,i=0,j=0,len=0,ncount=1;
	cin>>n;
	string *str=new string[n];
	string::iterator str_it;
	map<string,int> strMapName;
	map<string,int>::iterator it;
	for (i=0;i<n;i++)
	{
		cin>>str[i];
		for (str_it=str[i].begin();str_it != str[i].end();++str_it)
		{
			if (*str_it=='-')
			{
				str[i].erase(str_it);// 删除最后一个字符——出错
			}
			if (str_it==str[i].end())
			{
				break;
			}
		}
		len=str[i].length();
		for (j=0;j<len;j++)
		{
			if (str[i][j]>'9')
			{
				str[i][j]=AlphaToInteger((char)str[i][j]);
			}
		}
		if (strMapName.count(str[i]))
		{
			it=strMapName.find(str[i]);
			it->second+=1;
		}
		else
		{
			strMapName.insert(map<string,int>::value_type(str[i],1));
		}
	}
	string temp;
	int flag=0;
	for (it=strMapName.begin();it != strMapName.end();it++)
	{
		if (it->second>1)
		{
			flag=1;
			temp=it->first;
			printTelNum(temp);
			cout<<" "<<it->second<<endl;
		}
	}
	if (flag==0)
	{
		cout<<"No duplicates."<<endl;
	}
	return 0;
}

char AlphaToInteger(char ch)
{
	char temp;
	switch (ch)
	{
	case 'A':
	case 'B':
	case 'C':
		temp='2';
		break;
	case 'D':
	case 'E':
	case 'F':
		temp='3';
		break;
	case 'G':
	case 'H':
	case 'I':
		temp='4';
		break;
	case 'J':
	case 'K':
	case 'L':
		temp='5';
		break;
	case 'M':
	case 'N':
	case 'O':
		temp='6';
		break;
	case 'P':
	case 'R':
	case 'S':
		temp='7';
		break;
	case 'T':
	case 'U':
	case 'V':
		temp='8';
		break;
	case 'W':
	case 'X':
	case 'Y':
		temp='9';
		break;
	}
	return temp;
}

void printTelNum(string str)
{
	int i=0,len=0;
	len=str.length();
	for (i=0;i<len;i++)
	{
		cout<<str[i];
		if (i==2)
		{
			cout<<'-';
		}
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值