摘要: 1 #include <iostream> 2 3 using std::set; 4 using std::cout; 5 using std::endl; 6 #define NODENUM 5000 7 8 struct Node{ 9 int low;10 int high;11 int subNodeNum;12 };13 14 Node node_array[NODENUM];15 16 void build(int l, int r, int root_index)17 {18 Node tmpNode;19 tmpNode.low ... 阅读全文
posted @ 2011-12-27 08:53 Richard Zhong 阅读(442) 评论(0) 推荐(2) 编辑