08 2020 档案

摘要:1 #pragma once 2 template<class T>struct binaryNode { 3 binaryNode() = default; 4 binaryNode(T data, binaryNode<T>* father = NULL, binaryNode<T>* lson 阅读全文
posted @ 2020-08-19 00:48 世界を変える御宅族 阅读(181) 评论(0) 推荐(0)
摘要:#include <iostream> #include<algorithm> #include<stack> #include<vector> using namespace std; bool nixu(vector<int>cp) { for (size_t i = 2; i < cp.siz 阅读全文
posted @ 2020-08-08 01:17 世界を変える御宅族 阅读(336) 评论(0) 推荐(0)
摘要:1 #include <iostream> 2 #include<my.hpp> 3 using namespace std; 4 5 void line_feed() { 6 cout << endl; 7 } 8 9 template<class T>class List { 10 public 阅读全文
posted @ 2020-08-05 21:39 世界を変える御宅族 阅读(198) 评论(0) 推荐(0)