Ben n düğümleri sahip tam bir ağaçtır if (yaprak düğümlerin dışındaki tüm düğümler iki çocuk sahibi) olduğu ikili arama ağaçları hakkında okumak, o zaman hiç yol 1'den fazla + log n düğümleri olabilir.
İşte benim yaptığım hesaplama olduğunu ... Ben yanlış yaptım beni nereye gösterebilir ....
the first level of bst has only one node(i.e. the root)-->2^0
the second level have 2 nodes(the children of root)---->2^1
the third level has 2^3=8 nodes
.
.
the (x+1)th level has 2^x nodes
so the total number of nodes =n = 2^0 +2^1 +2^2 +...+2^x = 2^(x+1)-1
so, x=log(n+1)-1
now as it is a 'complete' tree...the longest path(which has most no of nodes)=x
and so the nodes experienced in this path is x+1= log(n+1)
O zaman nasıl 1 numara + ... gelip n log mi?













