摘要:
#include #include using namespace std;typedef int E;typedef char T;const int maxWeight=1000;class Graph{private: T *verticesList; ... 阅读全文
摘要:
#include using namespace std;class Stack{private: int top,maxSize; int *element;public: Stack(int sz){ top=0; m... 阅读全文