07 2019 档案

摘要:1 #include <string> 2 #include <stack> 3 #include <vector> 4 5 using std::string; 6 using std::vector; 7 using std::stack; 8 9 class Element { 10 publ 阅读全文
posted @ 2019-07-21 21:12 Ren.Yu 阅读(707) 评论(0) 推荐(0)
摘要:1 #include 2 #include 3 typedef unsigned long long ullong; 4 using std::string; 5 6 ullong factorial(ullong i) { 7 if (i > 1) { 8 return i * factorial(i - 1); 9 } 10 i... 阅读全文
posted @ 2019-07-07 18:33 Ren.Yu 阅读(458) 评论(0) 推荐(0)