ACM Splay(模板)

Splay模板ios #include <iostream> using namespace std; class SplayTree { public: struct Node { int key; Node *pFather,*pLeft,*pRight; } *pRoot; SplayTree() { pRoot
相關文章
相關標籤/搜索