统计根节点个数: match (n) where not ()-->(n) return count(distinct n)统计叶节点个数: match (n) where not (n)-->() return count(distinct n)