利用棧和隊列判斷出棧序列合法性

#include <iostream> #include <stack> #include <queue> #include <string.h> using namespace std; /* 方法一: 棧s是順序入棧(1, 2, 3, ...)。 隊列order是待校驗序列。 */ bool is_valid_order(queue<int> order) { if (order.em
相關文章
相關標籤/搜索