Problem LeetCode Given the root of a binary tree, return the sum of every tree node's tilt. The tilt of a tree node is the absolute difference between ...
分类:
编程语言 时间:
2021-01-25 11:29:21
阅读次数:
0
Problem LeetCode Given a binary search tree with non-negative values, find the minimum absolute difference between values of any two nodes. Example: I ...
分类:
编程语言 时间:
2021-01-21 10:55:51
阅读次数:
0
package LeetCode_1184 /** * 1184. Distance Between Bus Stops * https://leetcode.com/problems/distance-between-bus-stops/ * A bus has n stops numbered ...
分类:
其他好文 时间:
2021-01-07 12:12:35
阅读次数:
0
1. A warning:comparison between signed and unsigned integer expressions [-Wsign-compare]:有符号数和无符号数的比较警告 为什么出错呢 很多时候你必须声明一下 unsigned int 如果不声明,有时候进行比较, ...
分类:
其他好文 时间:
2021-01-05 11:18:11
阅读次数:
0
参考资料:http://stackoverflow.com/questions/4958379/what-is-the-difference-between-null-and-system-dbnull-value http://www.cnblogs.com/muou/archive/2010/0 ...
分类:
数据库 时间:
2020-12-29 11:11:14
阅读次数:
0
Description This is the hard version of this problem. The only difference between the easy and hard versions is the constraints on $ k $ and $ m $ . I ...
分类:
其他好文 时间:
2020-12-25 11:42:12
阅读次数:
0
SQL语句中IN包含的值不应过多,不能超过200个,200个以内查询优化器计算成本时比较精准,超过200个是估算的成本,另外建议能用between就不要用in,这样就可以使用range索引了。 SELECT语句务必指明字段名称:SELECT * 增加很多不必要的消耗(cpu、io、内存、网络带宽); ...
分类:
数据库 时间:
2020-12-22 12:25:55
阅读次数:
0
https://codeforces.ml/problemset/problem/1343/D 差分: 对于每一对max+min=sum,当sum等于以下区间的值时需要改变的次数; [2,min]+=2; [max+k+1,2*k]+=2; [min+1,max+k]+=1; [max+min,ma ...
分类:
其他好文 时间:
2020-12-19 13:03:05
阅读次数:
2
前言
最近公司在代码评审时,在使用DATE_FORMAT函数的问题上有了点不同的观点。具体DATE_FORMAT对索引会不会产生影响?哪种情况下会产生影响呢?周末无事,通过mysql的执行计划测试一波。
分类:
其他好文 时间:
2020-12-16 13:07:34
阅读次数:
8