what this line of code mean?# Java - 爪哇娇娃
z*n
1 楼
int t = (tree.left == null) ? 0 : tree.left.Size;
Here: tree.left.Size refers to the nodes of the left branch of the tree.
But what does ? 0: tree.left.Size mean? Millions of thanks for your reply.
Here: tree.left.Size refers to the nodes of the left branch of the tree.
But what does ? 0: tree.left.Size mean? Millions of thanks for your reply.