算法訓練 棧

#include<iostream> #include<string> using namespace std; int num = 100000; string stack[100000]; int top, n; void push(string name) { stack[++top] = name; //先++ 再賦值爲top } string pop() { return stac
相關文章
相關標籤/搜索