Is bitcoin Merkle tree always binary?
(1) I am wondering about the lookup efficiency of the Merkle tree.
(2) I haven't found any evidence that Merkle trees are mandatory binary, which would allow a O(log2 n) lookup algorithm.
(3) If a node may have an arbitrary number of children, then the lookup function would have a O(logK n * K), where K is the maximum number of allowed child nodes (as far as I remember).