摘要: #include <iostream>#include <string>#include <fstream>#include <sstream> using namespace std; template<typename T>int compare(const T &v1, const T &v2 阅读全文
posted @ 2019-06-03 21:15 西北逍遥 阅读(176) 评论(0) 推荐(0) 编辑
摘要: #pragma once#include <iostream>#include <iomanip> using namespace std; template<class T>class Queue{ struct Node { T a; Node *next; }; public: Queue() 阅读全文
posted @ 2019-06-03 20:29 西北逍遥 阅读(344) 评论(0) 推荐(0) 编辑
摘要: #pragma once#include <iostream>#include <iomanip> using namespace std; class Queue{ struct Node { int a; Node *next; }; public: Queue(); void push(int 阅读全文
posted @ 2019-06-03 19:46 西北逍遥 阅读(267) 评论(0) 推荐(0) 编辑