⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 earlier.h

📁 《数据结构课程设计案例精编》 附赠光盘源码
💻 H
字号:
// FileName:earlier.h
// 定义了函数对象earlier,用于构造multiset结构
#ifndef  EARLIER_H
#define  EARLIER_H

#include <algorithm>
#include <iostream>
#include <fstream>
#include <string>
#include <iomanip>
#include <map>
#include <set>
using namespace std;

typedef map<string, string> PropertyMap;

struct earlier: binary_function<string, string, bool> 
{
	bool operator()(const string& name_lhs,
		const string& name_rhs) const 
	{
		return dateProp[name_lhs] < dateProp[name_rhs];
	}
	// dateProp[name] holds year in which Ph.D. degree was
	// granted to name
	static PropertyMap dateProp;
	// placeProp[name] holds institution that granted Ph.D.
	static PropertyMap placeProp;
};

// 静态成员变量的初始化
PropertyMap earlier::dateProp;
PropertyMap earlier::placeProp;

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -