摘要: 完全二叉搜索树回溯法 #include <iostream> #include <algorithm> using namespace std; int A[100], T[100]; int n, cnt; void solve(int root) {//结点 if (root > n) return ; solve( 阅读全文
posted @ 2022-02-18 16:56 帝宝单推人! 阅读(37) 评论(0) 推荐(0)