Visitors hit counter dreamweaver
摘要: 再次理解线段树。比第一次又有了更深刻的认识,虽然还不能完全靠自己写出来,但自己慢慢的去摸索,一定能慢慢理解那个套路了。加油,拿下线段树。同时,推荐北大郭炜讲的线段树。poj3264#include <iostream>#include <algorithm>#include <numeric>using namespace std;#define MY_MIN 99999999#define MY_MAX -99999999struct CNode{ int L,R; int nMin,nMax; CNode *pLeft,*pRight;};int min 阅读全文
posted @ 2012-02-21 21:11 Jason Damon 阅读(1404) 评论(1) 推荐(0) 编辑
摘要: http://apps.hi.baidu.com/share/detail/15064014http://www.jb51.net/article/22773.htm 阅读全文
posted @ 2012-02-21 09:58 Jason Damon 阅读(131) 评论(0) 推荐(0) 编辑