Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の問題の適切な解決策を見つけるのにかなり苦労しており、インターネットでいくつかのアイデアを探しています。見つけることができませんでした。
問題は、標準入力から左括弧なしの式を取得し、括弧が挿入された同等の中置式を出力するプログラムを作成することです。
与えられた式:1 + 2) * 3 - 4)* 5 - 6))) 出力:((1 + 2) * ((3 - 4) * (5 - 6)))
1 + 2) * 3 - 4)* 5 - 6)))
((1 + 2) * ((3 - 4) * (5 - 6)))
この問題を解決する最善の方法は何ですか?