06 2021 档案
摘要:#5 创建高性能的索引 5.1 索引基础 5.1.1 索引的类型 B-Tree 哈希索引 空间数据索引 全文索引 其他索引类别 5.2 索引的优点 1.索引大大减少了服务器查询需要扫描的数据量 2.索引可以帮助服务器避免排序和临时表 3.索引可以将随机IO变为顺序IO 读书推荐《数据库索引设计和优化
阅读全文
摘要:题库 https://mp.weixin.qq.com/s?__biz=MzkxNDI1MTA1MA==&mid=2247484434&idx=1&sn=516a81efd63e0f276b7b4eb7dd2f5d5c&source=41#wechat_redirect 企业刷题 https://c
阅读全文
摘要:point offer 40 package PointOffer; import java.util.Comparator; import java.util.PriorityQueue; public class Solution40 { public static int[] getLeast
阅读全文