2017年5月24日

AVL

摘要: 1 #include 2 using namespace std; 3 struct node; 4 node *null; 5 struct node{ 6 node *lc, *rc; 7 8 int dep; 9 int key, value; 10 11 inline void init(int _key, i... 阅读全文

posted @ 2017-05-24 20:52 gjing 阅读(198) 评论(0) 推荐(0)

导航