摘要: //容器vector,可以单方向扩展 //扩展的速度是以二倍的速度扩展 #include <iostream> #include <vector> using namespace std; int main() { vector<int> v;//定义一个空vector vector<int> v1 阅读全文
posted @ 2020-02-07 17:07 zmachine 阅读(150) 评论(0) 推荐(0) 编辑
摘要: //使用容器array//内存大小不可以扩展 #include <iostream> #include <array> #include<ctime>//用来计时 using namespace std; int main() { array<int,500000> a; clock_t timeS 阅读全文
posted @ 2020-02-07 15:14 zmachine 阅读(216) 评论(0) 推荐(0) 编辑