Want to improve this question? Add details and clarify the problem by editing this post.
Closed 10 years ago.
您应该使用通用的 Stack:
var stack = new Stack<int>(); stack.Push(1); stack.Push(2); stack.Push(3); stack.Pop(); // 3 stack.Pop(); // 2 stack.Pop(); // 1
或者只使用一个简单的 List,然后调用 Reverse():
var list = new List<int> {1, 2, 3}; list.Reverse(); // {3, 2, 1}
You should use the generic Stack:
Or just use a simple List and then call Reverse():
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
您应该使用通用的 Stack:
或者只使用一个简单的 List,然后调用 Reverse():
You should use the generic Stack:
Or just use a simple List and then call Reverse():