247. 线段树查询 II

247. 线段树查询 II

 
对于一个数组,我们可以对其建立一棵  线段树 , 每个结点存储一个额外的值  count 来代表这个结点所指代的数组区间内的元素个数. (数组中并不一定每个位置上都有元素)
实现一个  query  的方法,该方法接受三个参数  root ,  start    end , 分别代表线段树的根节点和需要查询的区间,找到数组中在区间[ start ,  end ]内的元素个数。

样例

样例 1:
输入:"[0,3,count=3][0,1,count=1][2,3,count=2][0,0,count=1][1,1,count=0][2,2,count=1][3,3,count=1]",[[1, 1], [1, 2], [2, 3], [0, 2]]
输出:[0,1,2,2]
解释:
对应的线段树为:
 
[0, 3, count=3]
/ \
[0,1,count=1] [2,3,count=2]
/ \ / \
[0,0,count=1] [1,1,count=0] [2,2,count=1], [3,3,count=1]
 
Input : query(1,1), Output: 0
 
Input : query(1,2), Output: 1
 
Input : query(2,3), Output: 2
 
Input : query(0,2), Output: 2
样例 2:
输入:"[0,3,count=3][0,1,count=1][2,3,count=2][0,0,count=1][1,1,count=0][2,2,count=0][3,3,count=1]",[[1, 1], [1, 2], [2, 3], [0, 2]]
输出:[0,0,1,1]
解释:
对应的线段树为:
 
[0, 3, count=2]
/ \
[0,1,count=1] [2,3,count=1]
/ \ / \
[0,0,count=1] [1,1,count=0] [2,2,count=0], [3,3,count=1]
 
Input : query(1,1), Output: 0
 
Input : query(1,2), Output: 0
 
Input : query(2,3), Output: 1
 
Input : query(0,2), Output: 1

注意事项

为了能更好地理解这道题,你最好先完成 线段树的构造 线段树的查询
 
 
 
/**
* Definition of SegmentTreeNode:
* public class SegmentTreeNode {
*     public int start, end, count;
*     public SegmentTreeNode left, right;
*     public SegmentTreeNode(int start, int end, int count) {
*         this.start = start;
*         this.end = end;
*         this.count = count;
*         this.left = this.right = null;
*     }
* }
*/
 
 
 
 
public class Solution {
    /*
     * @param root: The root of segment tree.
     * @param start: start value.
     * @param end: end value.
     * @return: The count number in the interval [start, end]
     */
    public int query(SegmentTreeNode root, int start, int end) {
            // System.out.println(start+","+end);
            if (root == null) {
                return 0;
            }
            if (root.start == start && root.end == end) {
                // System.out.println(start+",return,"+end);
                return root.count;
            }
            int sum = 0;
            if (root.left != null&&start <= root.left.end) {
                int left = Math.max(start, root.left.start);
                int right = Math.min(end, root.left.end);
                sum += query(root.left, left, right);
            }
            if (root.right != null&&end >= root.right.start) {
                int left = Math.max(start, root.right.start);
                int right = Math.min(end, root.right.end);
                sum += query(root.right, left, right);
            }
            return sum;
    }
}
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

时代我西

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值