std::vector 向下调整大小

std::vector resize downward(std::vector 向下调整大小)
本文介绍了std::vector 向下调整大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

C++ 标准似乎没有声明任何一方对容量的副作用resize(n),用 n clear().

The C++ standard seems to make no statement regarding side-effects on capacity by either resize(n), with n < size(), or clear().

它确实声明了 push_backpop_back - O(1)

It does make a statement about amortized cost of push_back and pop_back - O(1)

我可以设想一个执行通常类型的容量更改的实现ala CLRS 算法(例如,放大时加倍,将 size 减小到 < capacity()/4 时减半).(Cormen Lieserson Rivest Stein)

I can envision an implementation that does the usual sort of capacity changes ala CLRS Algorithms (e.g. double when enlarging, halve when decreasing size to < capacity()/4). (Cormen Lieserson Rivest Stein)

有人有任何实施限制的参考吗?

Does anyone have a reference for any implementation restrictions?

推荐答案

以较小的尺寸调用 resize()vector 的容量没有影响.它不会释放内存.

Calling resize() with a smaller size has no effect on the capacity of a vector. It will not free memory.

vector 释放内存的标准习惯用法是用一个空的临时 vector swap() 它: std::vector().swap(vec);.如果要向下调整大小,则需要从原始向量复制到新的局部临时向量,然后将结果向量与原始向量交换.

The standard idiom for freeing memory from a vector is to swap() it with an empty temporary vector: std::vector<T>().swap(vec);. If you want to resize downwards you'd need to copy from your original vector into a new local temporary vector and then swap the resulting vector with your original.

更新: C++11 添加了一个成员函数 shrink_to_fit() 出于此目的,这是一个将 capacity() 减少到 size() 的非绑定请求.

Updated: C++11 added a member function shrink_to_fit() for this purpose, it's a non-binding request to reduce capacity() to size().

这篇关于std::vector 向下调整大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

OpenGL transforming objects with multiple rotations of Different axis(OpenGL 变换不同轴多次旋转的对象)
GLFW first responder error(GLFW 第一响应者错误)
SOIL not linking correctly(SOIL 连接不正确)
Core profile vs version string? Only getting GLSL 1.3/OGL 3.0 in mesa 10.0.1(核心配置文件与版本字符串?在 mesa 10.0.1 中只获得 GLSL 1.3/OGL 3.0)
What is the range of OpenGL texture ID?(OpenGL 纹理 ID 的范围是多少?)
How taxing are OpenGL glDrawElements() calls compared to basic logic code?(与基本逻辑代码相比,OpenGL glDrawElements() 调用的繁重程度如何?)