标签: c++ templates
与标题一样,std::sort()如何获得迭代器和指针?有人可以说出它是如何实现的吗?
std::sort()
std::sort(vec.begin(), vec.end())
std::sort(arr, arr + arr_size)