如何使用std::sort()函数对列表进行排序?我已经尝试了下面的代码。
std::sort(listStorage.begin(), listStorage.end());
尝试使用:
listStorage.sort();
链表不提供随机访问迭代器,这就是std::sort不能工作的原因。