Believing the wikipedia article: http://en.wikipedia.org/wiki/AVL_tree
AVL trees are height-balanced, but in general not weight-balanced nor μ-balanced;[4] that is, sibling nodes can have hugely differing numbers of descendants.
But, as an AVL tree is:
a self-balancing binary search tree [...]. In an AVL tree, the heights of the two child subtrees of any node differ by at most one
I don't see how an AVL could be weight-unbalanced since -if I understood the definition of an AVL tree well-, every sibling will have approximately the same number of child since they have the same height +/- 1.
So, could you give me an example of an AVL tree which is unbalanced ? I did not succeed to find one. Thus, or I misunderstood the definition of an AVL/unweighted tree, or the wikipedia article is false...
Thanks