摘要:
#include#include#include#include#include#include#include"Test.h"#include#includeusing namespace std;char *buffer=new char[24];int len=24;templateclass CStack{ struct Node { Node *next; T value; public: Node():next(NULL){} }; void *freehead; Node *shead[3]; v... 阅读全文