摘要: #include "RailSystem.h" void RailSystem::reset(void) { // TODO: reset the data objects of the // City objects' contained in cities map<string, City*>: 阅读全文
posted @ 2016-04-11 19:18 BigMinnow 阅读(276) 评论(0) 推荐(0) 编辑
摘要: // parts.h #ifndef _PARTS_H_#define _PARTS_H_ #include <vector>#include <map>#include <string>#include <iostream> using namespace std; //************* 阅读全文
posted @ 2016-04-06 22:08 BigMinnow 阅读(181) 评论(0) 推荐(0) 编辑
摘要: #ifndef GRID_H#define GRID_H #include <string>#include <vector> using namespace std; /** IMPORTANT NOTE:** For this assignment, you might need to add 阅读全文
posted @ 2016-04-03 21:31 BigMinnow 阅读(242) 评论(0) 推荐(0) 编辑
摘要: #pragma once#include<string>#ifndef CAR_H#define CAR_H using namespace std; class car{private: string plate; string action; int number;public: car(); 阅读全文
posted @ 2016-04-01 16:17 BigMinnow 阅读(204) 评论(0) 推荐(0) 编辑
摘要: #pragma once#ifndef FIFO_H#define FIFO_H#include"simulator.h" class fifo : public simulator{public: fifo(int second_per_page); virtual void simulate(s 阅读全文
posted @ 2016-03-31 18:11 BigMinnow 阅读(167) 评论(0) 推荐(0) 编辑
摘要: #ifndef _ENHANCEDLINKEDLIST_H_#define _ENHANCEDLINKEDLIST_H_ #include "LinkedList.h" using namespace std; class ListItemNotFoundException : public log 阅读全文
posted @ 2016-03-29 13:26 BigMinnow 阅读(175) 评论(0) 推荐(0) 编辑