When to use the Stack collection in C#?

后端 未结 12 2263
滥情空心
滥情空心 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:59

    Depth First Search (DFS) is a good real-world example of the use of a stack.

    http://www.cs.toronto.edu/~heap/270F02/node36.html

提交回复
热议问题