随笔分类 - E-Tool
摘要:1 #ifndef matrix_h 2 #define matrix_h 3 #include 4 #include 5 #include 6 #include 7 #include 8 using std::vector; 9 using std::ios; 10 11 /* 12 Normal distr...
阅读全文
摘要:1 /* 2 * Copyright 2016 E-Tool, Inc. 3 */ 4 5 #ifndef distance_h 6 #define distance_h 7 #include 8 #include 9 using std::vector; 10 11 #define max(a,b) (a>b?a:b) 12 #define min(a,b) (a x...
阅读全文
摘要:1 /* 2 * Copyright 2016 E-Tool, Inc. 3 */ 4 5 #ifndef sort_h 6 #define sort_h 7 8 #include 9 #include 10 using std::vector; 11 template 12 13 class Sort { 14 public: 15 ...
阅读全文