The number of nodes in the bottom layer depends on the success of the lookup. If the element to be found happens to be in the middle, then it only takes one comparison to find it, and the bottom level only has one node. However, if the element is located at both ends of the table, $log_2n$comparison is needed to find the element successfully, and the lowest level will have $n/2$nodes. Thus, in a half search, the number of knots at the bottom level is not fixed, but values between 1 and $n/ $2.