摘要:
来自于:B站,尚硅谷MySQL数据库面试题宝典,mysql面试必考!mysql工作必用! MYSQL索引 InnoDB和MyISAM的实现区别是什么? MySQL的索引分三类:B+树索引,Hash索引,全文索引。第一点:InnoDB数据和索引放在一个文件,MYISAM索引与原来的文件分开。第二点:在 阅读全文
摘要:
#include <iostream> using namespace std; int a[100005]; void sort(int l, int r){ cout<<l<<" "<<r<<endl; if(l>=r)return; int anchor = a[l]; int p1 = l; 阅读全文