#include "stdafx.h"
#include <vector>
#include <string>
#include <sstream>
#include <algorithm>
using namespace std;
typedef struct _Node
{
int iHid;
std::string strName;
}Node;
struct compare_hid:binary_function<Node,int,bool>
{
bool operator()(Node& a,int hid
11-24
1984