Python list equivalent in C++?

前端 未结 5 991

Could you please tell me what is the closest data type in C++ to python list? If there is nothing similar, how would you build it in C++?

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-05 18:10

    std::vectors, std::lists, and arrays (or std::arrays) all have features similar to Python lists. Which data structure you want to choose depends on your requirements.

提交回复
热议问题