标签:fill函数 vector algo main begin 根据 namespace pac 函数
使用方法:
fill(arr, arr + n, 要填入的内容)
//int数组
#include <cstdio>
#include <algorithm>
using namespace std;
int main() {
int arr[10];
fill(arr, arr + 10, 2);
return 0;
}
//vector
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main() {
vector<int> v{0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
fill(v.begin(), v.end(), -1);
return 0;
}
使用方法:
//memset()使用方法
#include <iostream>
#include <cstring>
using namespace std;
int main(){
int a[20];
memset(a, 0, sizeof(a));
return 0;
}
C++初始化问题fill()、memset()函数和图初始化
标签:fill函数 vector algo main begin 根据 namespace pac 函数
原文地址:https://www.cnblogs.com/tsruixi/p/12388363.html