摘要: #include #include using namespace std;typedef int E;typedef char T;const int maxWeight=1000;class Graph{private: T *verticesList; ... 阅读全文
posted @ 2018-05-09 20:51 UnderScrutiny 阅读(163) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;class Stack{private: int top,maxSize; int *element;public: Stack(int sz){ top=0; m... 阅读全文
posted @ 2018-05-09 18:39 UnderScrutiny 阅读(408) 评论(0) 推荐(0) 编辑