摘要:
栈的vector实现#includeusing namespace std;template class stack{public: stack() { pool.reserve(capacity); } vo... 阅读全文
摘要:
单向链表C++class IntSLLNode{public: IntSLLNode() { next = 0; } IntSLLNode(int i, IntSLLNode *in = 0) { info... 阅读全文