poj 3481 Double Queue(平衡二叉樹基礎練習題)

題意: 。。。 思路: 這道題用來做SBT的練習了。。。node // SBT節點,固定域 l, r, sz // 須要一個key來比較大小 struct node { int l, r, sz, val, K; node (int x=0, int y=0):l(0), r(0), sz(0), val(x), K(y){} }; struct SBT { node a[Ma
相關文章
相關標籤/搜索