摘要: 1. 数组 1.常规法 2.动态数组法 3.STL库中vector 一维数组: int myints[] = {32,71,12,45,26,80,53,33}; std::vector<int> myvector (myints, myints+8); // 32 71 12 45 26 80 5 阅读全文
posted @ 2021-03-11 22:05 nipper 阅读(76) 评论(0) 推荐(0) 编辑