会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
友哥
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
8
9
10
11
12
13
14
15
16
···
28
下一页
2018年8月20日
mysql表的核心元数据
摘要: 索引的 select * from innodb_index_stats where table_name='recordsInRangeTest'; 表本身的
阅读全文
posted @ 2018-08-20 17:38 友哥
阅读(220)
评论(0)
推荐(0)
编辑
在thd又要加几个变量
摘要: 巨大的结构体,终归要变成巨大
阅读全文
posted @ 2018-08-20 16:57 友哥
阅读(117)
评论(0)
推荐(0)
编辑
2018年8月19日
算法的想法
摘要: 给点算法规格说明书,以最小的时间和空间复杂度去实现
阅读全文
posted @ 2018-08-19 20:43 友哥
阅读(112)
评论(0)
推荐(0)
编辑
算法导论
摘要: 原理、实现细节、复杂度证明
阅读全文
posted @ 2018-08-19 20:39 友哥
阅读(95)
评论(0)
推荐(0)
编辑
算法真的复杂
摘要: 有了基本思路后,如何以最简洁的方式去实现关键点,非常重要。 简洁意味着清楚、易理解、不易出错
阅读全文
posted @ 2018-08-19 19:52 友哥
阅读(167)
评论(0)
推荐(0)
编辑
快速排序-移动单边指针
摘要: /* C implementation QuickSort */ #include // A utility function to swap two elements void swap(int* a, int* b) { int t = *a; *a = *b; *b = t; } /* This function takes last element as pi...
阅读全文
posted @ 2018-08-19 19:48 友哥
阅读(505)
评论(0)
推荐(0)
编辑
如何实现算法
摘要: 可以实现的描述单元
阅读全文
posted @ 2018-08-19 16:08 友哥
阅读(396)
评论(0)
推荐(0)
编辑
2018年8月18日
c++ constructor, copy constructor, operator =
摘要: // list::push_back #include #include class element{ private: int number; public: element(int number){ this->number = number; std::cout number = element_instance.number; ...
阅读全文
posted @ 2018-08-18 18:25 友哥
阅读(126)
评论(0)
推荐(0)
编辑
2018年8月17日
阶段性总结
摘要: 1、MySQL中List实现与C++库的List实现不同 2、类的关系不清楚,需要类图来理清 3、流程不是非常清晰,需要列出接口 4、探索性实现,先实现简要框架,对要完善的功能加上todo,以便记忆
阅读全文
posted @ 2018-08-17 16:22 友哥
阅读(107)
评论(0)
推荐(0)
编辑
库的标准实现和私有实现的选择
摘要: 假设在稳定的情况下,对比功能。 极大可能,私有实现没有全部的功能。
阅读全文
posted @ 2018-08-17 12:20 友哥
阅读(135)
评论(0)
推荐(0)
编辑
上一页
1
···
8
9
10
11
12
13
14
15
16
···
28
下一页
公告