我目前正在做黑客级别的练习题。链接是:https://www.hackerrank.com/challenges/linkedin-practice-dictionaries-and-maps
#include<cstdio>
#include<map>
#include<vector>
#include<conio.h>
#include<iostream>
#include<string>
using namespace std;
map<std::string, int> dict;
map<std::string, int>::iterator k;
int i, j, temp, n;
long long num;
//char check[100][100];
std::string str, sea;
int main()
{
scanf("%d", &n);
j = n;
while(j--)
{
scanf("%s %d", &str, &num);
dict.insert(make_pair(str, num));
}
printf("finished\n");
printf("%s %d\n", "sam", dict["sam"]);
while(scanf("%s", str))
{
if(str.empty())
break;
//printf("k is %s\n",str);
k = dict.find(str);
if(k != dict.end())
{
printf("%s %d\n", str, dict[str]);
}
else
{
printf("Not found\n");
}
}
getch();
}
程序运行正常,直到printf语句“完成”。然后在dict语句的下一个输出中出现为
finished
sam 0
在while语句中,当它在map中搜索字符串时,应用程序挂起并自动关闭。在插入我尝试使用的值时:
请提及我是否需要在程序中进行任何更正。任何帮助表示赞赏。谢谢!
答案 0 :(得分:1)
这句话,
scanf("%s %d", &str, &num);
...不是输入std::string
的有效方法。它有未定义的行为。所有赌注都已关闭。
您可以输入char
缓冲区,方便std::string
提供此类缓冲区。 E.g。
str.resize( max_item_length );
scanf("%s %d", &str[0], &num);
str.resize( strlen( &str[0] ) );
当然,您可以在整个代码中使用C ++ iostream,例如
cin >> str >> num;