摘要:
#includeusing std::cin;using std::cout;using std::endl;namespace mynode{ typedef int type; struct Node { type data; ... 阅读全文
摘要:
#includeusing std::cin;using std::cout;using std::endl;namespace mystack2{ typedef int type; struct node { type data; node*next... 阅读全文