上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 28 下一页
摘要: #include #include #include int main() { int n, r; n = 10; r = 2; std::vector v(n); std::fill(v.end() - r, v.end(), true); std::vector > sequence_vector; do { ... 阅读全文
posted @ 2018-08-16 14:57 友哥 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 先使用,再看源码,再模仿 阅读全文
posted @ 2018-08-16 11:58 友哥 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 有bug,比如 1,2,3 只能给出 1,2 2,3 但是看不到 1,3 阅读全文
posted @ 2018-08-15 19:45 友哥 阅读(184) 评论(0) 推荐(0) 编辑
摘要: mysql> select * from mysql.innodb_index_stats WHERE database_name='test' and table_name='recordsInRangeTest'; +---------------+--------------------+--------------+---------------------+-------... 阅读全文
posted @ 2018-08-13 14:40 友哥 阅读(1351) 评论(0) 推荐(0) 编辑
摘要: 感悟 精通数据结构 精通算法 精通工程工具 切合业务场景 阅读全文
posted @ 2018-08-12 12:37 友哥 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 貌似是给科学家用的数据库,暂不研究 阅读全文
posted @ 2018-08-12 11:26 友哥 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 这阵子忙完去实现。哈哈哈 阅读全文
posted @ 2018-08-10 16:54 友哥 阅读(104) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; double vals[] = {10.1, 12.6, 33.1, 24.1, 50.0}; double[]& setValues( int i ) { return vals; // return a reference to the ith element } // main fu... 阅读全文
posted @ 2018-08-09 17:18 友哥 阅读(373) 评论(0) 推荐(0) 编辑
摘要: // constructing sets #include #include #include bool fncomp (int lhs, int rhs) {return lhs first; // empty set of ints int myints[]= {10,20,30,40,50}; std::set sec... 阅读全文
posted @ 2018-08-09 12:25 友哥 阅读(157) 评论(0) 推荐(0) 编辑
摘要: a->b->c 假如b是空指针,则容易造成运行错误 阅读全文
posted @ 2018-08-08 19:17 友哥 阅读(121) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 28 下一页