11 2023 档案
摘要:假设我们为表table的a,b,c三列创建了联合索引create index idx_a_b_c on table(a,b,c),并且在B+树中,数据的存储顺序如下: (a=1 b=1 c=1) (a=1 b=2 c=1) (a=1 b=2 c=3) (a=2 b=2 c=3) (a=2 b=2 c
阅读全文
摘要:在刷LeetCode的时候遇到了这样一个报错:incompatible types: ArrayList<ArrayList<Integer>> cannot be converted to List<List<Integer>> 具体的代码片段如下: class Solution { public
阅读全文