摘要: #include <vector>#include <iostream>#include "compacket.h"#include <map>using namespace std;struct Activity{int m_nStep;int m_nCount;Activity():m_nStep(1),m_nCount(0){}Activity(const int nStep,const int nCount):m_nStep(m_nStep = nStep),m_nCount(m_nCount = nCount){}};int m 阅读全文
posted @ 2012-05-18 17:01 byfei 阅读(193) 评论(0) 推荐(0)