標題:
2011 0924 (中序轉後序)
[打印本頁]
作者:
buy
時間:
2011-9-24 20:37
標題:
2011 0924 (中序轉後序)
#include<iostream>
#include<sstream>
using namespace std;
//宣告一個資料型態叫做Stack
class StackChar{
};
int order(char op); // 取得 算數優先權 */ > +-
string infixToPostfix(string infix);
int _tmain(int argc, _TCHAR* argv[])
{
string input;
getline(cin, input);
string postfix = infixToPostfix(input);
cout << postfix;
string str;
getline(cin, str);
return 0;
}
// 取得 算數優先權 */ > +-
int order(char op)
{
int returnValue = 0;
return returnValue;
}
// 中序轉後序
string infixToPostfix(string infix)
{
istringstream issstream(infix); //輸入
ostringstream postfix; //輸出
string word;
StackChar stack;
while(issstream >> word)
{
}
//清空stack
return postfix.str();
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2