代码拉取完成,页面将自动刷新
//
// Created by 高森森 on 2022/1/25.
//
#ifndef LEETCODE_SOLUTION5_H
#define LEETCODE_SOLUTION5_H
#include<iostream>
using namespace std;
#include<vector>
class Solution5 {
public:
vector<vector<int>> imageSmoother(vector<vector<int>>& img) {
int x=img.size();
int y=img[0].size();
vector<vector<int>> result(x,vector<int>(y,0));
for(int i=0;i<x;i++)
for(int j=0;j<y;j++)
{
int count=0;
for(int nx=i-1;nx<=i+1;nx++)
for(int ny=j-1;ny<=j+1;ny++)
{
if(nx>=0&&nx<x&&ny>=0&&ny<y)
{
result[i][j]+=img[nx][ny];
count++;
}
}
result[i][j]=result[i][j]/count;
}
return result;
}
};
#endif //LEETCODE_SOLUTION5_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。