C++ 所需的容器
我需要一个整数容器(如数组),以给定 x 和 y 和 z 的方式,必须将其插入到 x 和 y 之间,可以在它们之间插入 z 。并且给定 x 和 y ,如果 x 则得到放置在 y 的左侧。
I need a container (like array)for integers in such a way that given x and y and z ,which has to be inserted between x and y it will be possible to insert z between them.And given x and y ,get if x is placed left to the y.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么你可以使用
std::set
< /a>.它将始终保持您的元素有序。Well you could use an
std::set<int>
. It will always keep your elements ordered.好吧,使用向量。
像这样的东西。
看看这里: http://www.cplusplus.com/reference/stl/vector /插入/
Well, use vector.
Something like this.
Have a look here: http://www.cplusplus.com/reference/stl/vector/insert/