摘要:
假如结构体如下: struct item { int a; string b; }; 代码: #include <algorithm> #include <vector> using namespace std; // 创建一个结构体数组 vector<item> arr = { {3, "c"}, 阅读全文
摘要:
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { // 定义一个整数数组arr,包含五个元素:1, 2, 3, 4, 5。 int arr[] = { 1, 2, 阅读全文