開發平台(Platform): (Ex: Win10, Linux, ...)
mac
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
gcc
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
無
問題(Question):
這是資結的heap實作題目的一部分
第一行是要執行的指令數量
後面的是不同的指令
有些指令是會輸出值的 例如top
我想要讓top在所有指令打完之後cout
而不是一打完馬上cout
目前的做法是先把指令存到vector of string裡
全部讀完再取出vector裡面的指令來跑
但是這樣要讀兩次指令
要是可以像fstream一樣全部輸出到一個地方就好了
餵入的資料(Input):
5
push 23
top
push 99
pop
print
預期的正確結果(Expected Output):
5
push 23
top
push 99
pop
print
23
23
錯誤結果(Wrong Output):
5
push 23
top
23
push 99
pop
print
23
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
有需要再補
補充說明(Supplement):