Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the common uses of vector in C++

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "what are the common uses of vector in C++". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "what are the common uses of vector in C++".

1. Vector in C++

Vector has two parameters, one is size, which represents the number of elements stored in the current vector container, and the other is capacity, which indicates the number of elements that the current vector applies for in memory.

Capacity will change dynamically as you use vector built-in functions.

Capacity is usually larger than size, so if you push_back data into vector, you don't have to reapply memory and copy elements to new memory areas, which saves time.

Vector can be assigned to each other or as the return value of a function

2. Initialize

Same as the initialization of an array

Vector a = {11pm 2pm 3}; 3. Common functions

# include # include using namespace std; int main () {vector vec;}

The use of multidimensional vector is the same as multidimensional string.

Add an element at the end: push_back (the element to be added)

Vec.push_back (3)

Description: add the number 3 to the end of vec.

Note: for variables of type vector to add elements, you can only use the push_back () function

For (int I = 0 position I)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report