随笔分类 -  二叉树

二叉树模板!
摘要:1 #include 2 #include 3 #include 4 #include 5 #define N 30 6 using namespace std; 7 8 struct tree 9 {10 int data;11 tree *parent;12 ... 阅读全文

posted @ 2014-10-14 20:04 M.D.LUFFI 阅读(116) 评论(0) 推荐(0)

导航