题目
代码
/*---------------------------------------* 日期:2015-07-05* 作者:SJF0115* 题目:对象管理器* 来源:华为机试练习题-----------------------------------------*/#include #include "ObjMgt.h"#include using namespace std;struct Object{ unsigned int key1; unsigned int key2; unsigned int key3; Object(unsigned int a,unsigned int b,unsigned int c){ key1 = a; key2 = b; key3 = c; } Object(){}};vector