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.
このコードでは、N は、スタックに最後に挿入された String のインデックスではなく、次の空のスペースのインデックスです。したがって、a[--N] を実行すると、実際には最初に N が減少しますが、最後に挿入された項目「to」がポイントされます。
最初の「-」に遭遇すると、スタックは次のようになります。
a[0] = "to" a[1] = "be" a[2] = "or" a[3] = "not" a[4] = "to"
N は 5 です。