Блог пользователя appro

Автор appro, история, 8 лет назад, По-английски

What is the time complexity for building a segment tree for an array of size n?

  • Проголосовать: нравится
  • +10
  • Проголосовать: не нравится

»
8 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

O(n). Because in each recursuion call you recurse twice for subtasks of size n / 2 and do O(1) operations (that's if you're building segment tree for simple operation like sum or max).

T(n) = 2T(n / 2) + O(1) = O(n) (by Master-theorem)

Another way to see this — segment tree has n nodes on lowest level, n / 2 nodes on second level, n / 4 on third, ..., 1 on top level = 2 * n nodes = O(n) nodes, and in all of them you do O(1) operations.

»
8 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Also, you can appreciate segtree visualization here. :D

»
8 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

2N memory and operations required. [N; N + N — 1] leaves + [1; N — 1] internal nodes and root.