摘要: 假如结构体如下: struct item { int a; string b; }; 代码: #include <algorithm> #include <vector> using namespace std; // 创建一个结构体数组 vector<item> arr = { {3, "c"}, 阅读全文
posted @ 2023-03-23 17:51 朱英浩 阅读(35) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { // 定义一个整数数组arr,包含五个元素:1, 2, 3, 4, 5。 int arr[] = { 1, 2, 阅读全文
posted @ 2023-03-23 17:46 朱英浩 阅读(39) 评论(0) 推荐(0) 编辑