1115. Counting Nodes in a BST (30)
摘要:
#include <iostream> #include <queue> using namespace std; struct node { int lchild, rchild, key; }tree[1010]; int index = -1, n1, n2; queue<int> q; vo 阅读全文
posted @ 2025-11-25 09:07 王景迁 阅读(5) 评论(0) 推荐(0)
浙公网安备 33010602011771号