KTH LARGEST SUM IN A BINARY TREE | LEETCODE 2583 | PYTHON BFS SOLUTION

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ม.ค. 2025

ความคิดเห็น • 4

  • @ning4411
    @ning4411 2 หลายเดือนก่อน +3

    I don't think time complexity is correct here. The loop is O(N), and inside the loop, and for each node, it requires one heappush and at most one heapop, which is O(2logK), and the total time complexity is O(N*logK). H in time complexity is redundant, one counter example if the tree is skewed, and the time compexity is O(n^2*logk), which could not be true.

  • @sandeeptukaram6539
    @sandeeptukaram6539 หลายเดือนก่อน

    instead of heap O(NlgN), quicksort would serve better O(lgN)

  • @LJLJ-m1j
    @LJLJ-m1j 2 หลายเดือนก่อน

    Can you solve #2663 ?