摘要:
程序代码参考了csdn某博客,具体名字忘记了变量命名的头文件//common.h#ifndef COMM_H#define COMM_H#include <iostream>#include <vector>#include <string>#include <algorithm>#include <iterator>using namespace std;typedef vector<string> StrVec; //字符串向量typedef vector<int> IntVec; //整数向量typede 阅读全文