摘要: #include <iostream>#include "AVLtree.cpp"using namespace std;int main(){ AVLtree <int> a; int i,n; cin>>n; for (i=0; i<n; i++) a.insert_(i+i*10); a.tr 阅读全文
posted @ 2016-09-21 21:54 萌萌琪 阅读(198) 评论(0) 推荐(0)