LeetCode---Sort && Segment Tree && Greedy
摘要:
307. Range Sum Query Mutable 思路:利用线段树,注意数据结构的设计以及建树过程利用线段树,注意数据结构的设计以及建树过程 public class NumArray { class segmentNode{ int start; int end; segmentNode 阅读全文
posted @ 2017-01-26 11:52 LeonNew 阅读(186) 评论(0) 推荐(0) 编辑