1:memset函数
- 按照字节填充
- 在头文件cstring里面
2:fill函数
- 按照单元赋值,将一个区间的元素都赋同一个值
- 在头文件algorithm里面
因为memset函数按照字节填充,所以一般memset只能用来填充char型数组,(因为只有char型占一个字节)如果填充int型数组,除了0和-1,其他的不能。因为只有00000000 = 0,-1同理,如果我们把每一位都填充“1”,会导致变成填充入“11111111”。
而fill函数可以赋值任何,使用起来也比较方便。
- fill(arr, arr + n, 要填入的内容);
举例:
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
int main() {
int arr[10];
fill(arr, arr + 10, 2);
return 0;
}
//output:
2 2 2 2 2 2 2 2 2 2
赋值vector:
#include <algorithm>
#include <vector>
#include <iostream>
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;
}
//output:
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
fill填充二维数组
#include<cstdio>
#include<iostream>
using namespace std;
int main(){
int G[6][4];
fill(G[0],G[0]+6*4,520);
for(int i = 0;i < 6;i++)
{
for(int j = 0;j < 4;j++){
cout <<G[i][j] <<" ";
}cout <<"\n";
}
}
//output
520 520 520 520
520 520 520 520
520 520 520 520
520 520 520 520
520 520 520 520
520 520 520 520
3:vector也可以采用以下方法初始化:
初始化二维vector,为r*c的vector,所有值为0.
- 直接用初始化方法
vector<vector<int> > res(r, vector<int>(c, 0));
- 用resize()来控制大小
vector<vector<int> > res;
res.resize(r);//r行
for (int k = 0; k < r; ++k){
res[k].resize(c);//每行为c列
}
hhhh有用
妙~啊
你干什么
就不告诉你
大佬这个fill和memset比起来效率如何?
memset应该要比fill快一些,这个可以自己测一下,
好的谢谢大佬