摘要:
#二分法 def erfenfa(lis,target): start,end=0,len(lis)-1 while True: if end-start<=1: if target==lis[start]: return start elif target==lis[end]: return en 阅读全文
摘要:
mysql 学习记录 2022年1月20日回顾 union 和 union all 区别, union是会过滤和重新排序的,union all 能够合并但不去重 exists 和 not exists 表示 存在或者不存在,适用于替代 in select * from table t1 where 阅读全文