ACM 線段樹模板(模板)

#include <iostream> using namespace std; struct Node { int Sum; int Delay; Node *pLeft,*pRight; }; void Init(Node **pNode,int Left,int Right) { Node *pNew=new Node; if(Right-Le
相關文章
相關標籤/搜索