When to use the Stack collection in C#?

后端 未结 12 2268
滥情空心
滥情空心 2021-02-14 20:44

I do understand how Stack() and Stack works, but I really can\'t see any scenarios where an array, List or IEnumer

12条回答
  •  情深已故
    2021-02-14 20:56

    stacks are useful when converting an expression from infix notation to prefix notation. For example:

    a + b to (+ a b)

提交回复
热议问题