问题1:单个向量的 density 分布图?
(1) 模拟数据
set.seed(202402)
datdiamonds[sample(nrow(diamonds), 1000),]> head(dat)
# A tibble: 6 10carat cut color clarity depth table price x y z<dbl> <ord> &l…
package main type TreeNode struct { Val int Left *TreeNode Right *TreeNode
}
// 2476. 二叉搜索树最近节点查询
//思路先用中序遍历 左中右获取有序数组,在用二分法寻找最大,最小值
func closestNodes(root *TreeNode, queries []int) [][]i…