Which of the following is a valid expression to find the number of nodes in a binary tree using recursion?
num_nodes(root) = 1 + num_nodes(root->left) + num_nodes(root->right)
num_nodes(root) = 0 + num_nodes(root->left) + num_nodes(root->right)
Baroque art features strong contrasts, while Rococo art prefers more subtle transitions
Baroque art is generally larger in scale than Rococo art

Information Technology and Computer Science Übungen werden geladen ...