(From: Data Structures Using C By Aaron M. Tenenbaum):
"A complete binary tree of depth d is the strictly binary tree all of whose leaves are at level d."
So, by that meaning the following tree should not be complete binary tree, right?
http://cs-study.blogspot.de/2012/11/complete-binary-tree.html
But, it is according to wikipedia: In a complete binary tree every level, except possibly the last, is completely filled, and all nodes in the last level are as far left as possible. It can have between 1 and 2h nodes at the last level h.
Please clarify my confusion.