Double sum = 0;需写为Double sum = 0.0;否则int cant invert double
想t通过把BST转化成字符串再检测其是不是合法的BST,即通过把树每个节点的值转化为数组看是否顺序,先转为字符串再用字符数组判断,注意这里由于节点数值可能是负值-5,或多位数,那么它转换成字符串再用字符数组就无法等值转化了
用a<b做判断,不要用a-b<0做判断,不然a=2147483647,b=-2147483647,这样就越界了
Queue<TreeNode> queue = new LinkedList();
TreeNode t;
queue.offer(root);
int size = queue.size();
while(!queue.isEmpty()){
for(int i = 0;i < size;i++){
t = queue.poll();
if(t.left != null)queue.offer(t.left);
if(t.right != null)queue.offer(t.right);
}
res.add(t.val);//它会认为t可能没有初始化,因为不知道size值
size = queue.size();
}
char[][] board;int count
board[x][y] = (char)('0'+count); 如果board[x][y] = '0'+count就会报错int cant convert to char
queue<> 不能转化为List<>