在列表上使用std::sort();
如何使用 std::sort() 函数对列表进行排序?我已经尝试过下面的代码。
std::sort(listStorage.begin(), listStorage.end());
提前致谢。
How do you sort a list using the std::sort() function? I have tried the code below.
std::sort(listStorage.begin(), listStorage.end());
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用:
链表不提供随机访问迭代器,这就是 std::sort 不起作用的原因。
Try using:
A linked list does not provide a random-access iterator, which is why std::sort won't work.