本文整理汇总了C++中map::key_comp方法的典型用法代码示例。如果您正苦于以下问题:C++ map::key_comp方法的具体用法?C++ map::key_comp怎么用?C++ map::key_comp使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类map
的用法示例。
在下文中一共展示了map::key_comp方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main() {
# ifdef _DEBUG
freopen("i.in", "r", stdin);
# else
freopen("i.in", "r", stdin);
freopen("i.out", "w", stdout);
# endif
ios_base::sync_with_stdio(false);
cin.tie(NULL);
words.reserve(20000);
int i;
string s;
while (cin >> s) {
if (s == "<text>") {
q.push((lastMap = new Memory));
if (q.size() > 7) {
Memory* toDel = q.front();
for (i = 0; i < (int)words.size(); i++)
sevenDaysMap.words[i].count -= toDel->words[i].count;
q.pop();
}
while (cin >> s, s != "</text>") {
if (s.length() < 4)
continue;
map<string, int>::iterator lb = wordMap.lower_bound(s);
int id;
if (lb != wordMap.end() && !wordMap.key_comp()(s, lb->first)) {
//existing.
id = lb->second;
} else {
//new.
id = words.size();
wordMap.insert(lb, make_pair(s, id));
words.push_back(s);
}
lastMap->words[id].count++;
sevenDaysMap.words[id].count++;
}
} else if (s == "<top") {
示例2: get_comparator
C get_comparator() {
return weak_refs.key_comp();
}