ACM Splay(模板)

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