会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
友哥
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
8
9
10
11
12
13
14
15
16
···
28
下一页
2018年8月21日
memory引擎和innodb引擎速度对比
摘要: 10倍的速度差距
阅读全文
posted @ 2018-08-21 21:37 友哥
阅读(207)
评论(0)
推荐(0)
2018年8月20日
mysql表的核心元数据
摘要: 索引的 select * from innodb_index_stats where table_name='recordsInRangeTest'; 表本身的
阅读全文
posted @ 2018-08-20 17:38 友哥
阅读(228)
评论(0)
推荐(0)
在thd又要加几个变量
摘要: 巨大的结构体,终归要变成巨大
阅读全文
posted @ 2018-08-20 16:57 友哥
阅读(126)
评论(0)
推荐(0)
2018年8月19日
算法的想法
摘要: 给点算法规格说明书,以最小的时间和空间复杂度去实现
阅读全文
posted @ 2018-08-19 20:43 友哥
阅读(120)
评论(0)
推荐(0)
算法导论
摘要: 原理、实现细节、复杂度证明
阅读全文
posted @ 2018-08-19 20:39 友哥
阅读(100)
评论(0)
推荐(0)
算法真的复杂
摘要: 有了基本思路后,如何以最简洁的方式去实现关键点,非常重要。 简洁意味着清楚、易理解、不易出错
阅读全文
posted @ 2018-08-19 19:52 友哥
阅读(173)
评论(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 友哥
阅读(512)
评论(0)
推荐(0)
如何实现算法
摘要: 可以实现的描述单元
阅读全文
posted @ 2018-08-19 16:08 友哥
阅读(433)
评论(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 友哥
阅读(130)
评论(0)
推荐(0)
2018年8月17日
阶段性总结
摘要: 1、MySQL中List实现与C++库的List实现不同 2、类的关系不清楚,需要类图来理清 3、流程不是非常清晰,需要列出接口 4、探索性实现,先实现简要框架,对要完善的功能加上todo,以便记忆
阅读全文
posted @ 2018-08-17 16:22 友哥
阅读(111)
评论(0)
推荐(0)
上一页
1
···
8
9
10
11
12
13
14
15
16
···
28
下一页
公告