[鏈表(linked list)] [洛谷] P1160 隊列安排

模擬鏈表ios #include <iostream> using namespace std; const int MAXN = 1e5 + 10; int head = 1; struct num { int right; int left; }arr[MAXN]; void joinl(int x, int y) { arr[x].left = y;
相關文章
相關標籤/搜索