06 2019 档案
摘要:MySQL最重要最与众不同的特性是它的存储引擎架构,这种架构的设计将查询处理(Query Processing)及其他系统任务(Server Task)和数据的存储/提取相分离。这种处理和存储分离的设计可以在使用时根据性能,特性,以及其他需求来选择数据存储的方式。本文主要讲解MySQL的服务器架构,
阅读全文
摘要:#include<cstdio> #include<iostream> #include<algorithm> #include<cstring> using namespace std; //归并排序的非递归算法(示例用的是下面的) void merge(int a[], int l, int r
阅读全文