摘要:
001 两数之和:map,一次遍历 class Solution { public int[] twoSum(int[] nums, int target) { Map<Integer, Integer> map = new HashMap<>(); for (int i = 0; i < nums 阅读全文
摘要:
spring我直接说不会了 数据库:堆和栈的区别内存泄露、内存溢出、缓冲区溢出有什么区别进程间通信方式,他们之间的优缺点进程状态的变化事务:四个特性。mvcc索引数据库故障恢复或者事务回滚怎么保证数据一致性 怎么设计索引怎么保证通过undo redo日志恢复,数据库恢复时是怎么避免扫描全部日志的最左 阅读全文