测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A28380. 以下代码实现了二叉树的深度优先搜索(DFS),并统计叶子结点的数量,则横线上应填写( )。int countLeafNodes(TreeNode* root) { if (root == nullptr) return 0; stack<TreeNode*> s; s.push(root); int count = 0; while (!s.empty()) { TreeNode* node =…

单选题 困难

题目描述

以下代码实现了二叉树的深度优先搜索(DFS),并统计叶子结点的数量,则横线上应填写(    )。

int countLeafNodes(TreeNode* root) {
	if (root == nullptr) return 0;
	
	stack<TreeNode*> s;
	s.push(root);
	int count = 0;
	while (!s.empty()) {
		TreeNode* node = s.top();
		s.pop();
	
		if (node->left == nullptr && node->right == nullptr) {
		count++;
		}
	
		if (node->right) s.push(node->right);
		———————————————————————— // 在此处填入代码
	}
	return count;
}

选项(单选)

上一题 下一题