《Cracking the Coding Interview程式設計師面試金典》----清除行列
時間限制:3秒 空間限制:32768K 熱度指數:3623
演算法知識視訊講解題目描述
請編寫一個演算法,若N階方陣中某個元素為0,則將其所在的行與列清零。
給定一個N階方陣int[][](C++中為vector<vector>)mat和矩陣的階數n,請返回完成操作後的int[][]方陣(C++中為vector<vector>),保證n小於等於300,矩陣中的元素為int範圍內。
測試樣例:
[[1,2,3],[0,1,2],[0,0,1]]
返回:[[0,0,3],[0,0,0],[0,0,0]]
解題思路:一看到這個題目可能會想到遍歷整個矩陣,只要發現值為0,就將其所在行和與列全部清零。這個是個錯誤的思想,當清零的時候,0元素覆蓋了還沒有遍歷到的元素,所以只有陣列有一個零,最後就導致整個陣列全為0。為了裝逼,學到一個size_t,應該是等於unsigned int的
#include<iostream>
#include<string.h>
#include<vector>
using namespace std;
vector<vector<size_t> > clearZero(vector<vector<size_t> > mat, size_t n) {
vector<size_t>rows;
vector<size_t >clows;
for(size_t i = 0; i < mat.size(); ++i)
{
for(size_t j = 0; j < mat[0].size(); ++j)
{
if(mat[i][j] == 0)//將元素為0的行和列儲存
{
rows.push_back(i);
clows.push_back(j);
}
}
}
for(size_t i = 0; i < rows.size(); ++i)//處理行
{
int row = rows[i];
for(size_t j = 0; j < mat[0].size(); ++j)
{
mat[row][j] = 0;
}
}
for(size_t j = 0; j < clows.size(); ++j) //處理列
{
size_t clow = clows[j];
for(size_t i = 0; i < mat.size(); ++i)
{
mat[i][clow] = 0;
}
}
return mat;
}
void printVector(vector<vector<size_t> > mat,size_t n)
{
for(size_t i = 0; i < n; i++)
{
for(size_t j = 0;j < n; j++)
{
cout << mat[i][j] << " ";
}
cout << endl;
}
}
int main()
{
vector<vector<size_t> > n;
vector<size_t> v;
size_t m;
size_t temp;
while (cin >> m)
{
v.clear();
for (size_t i = 0; i<m; i++)
{
v.clear();
for (size_t j = 0; j < m; j++)
{
cin >> temp;
v.push_back(temp);
}
n.push_back(v);
}
printVector(clearZero(n, m),m);
}
return 0;
}
不懂的可以加我的QQ群:261035036(IT程式設計師面試寶典
群) 歡迎你的到來哦,看了博文給點腳印唄,謝謝啦~~
相關文章
- 《Cracking the Coding Interview程式設計師面試金典》----空格替換View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----詞頻統計View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----貓狗收容所View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----子串判斷View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----最長合成字串View程式設計師面試字串
- 《Cracking the Coding Interview程式設計師面試金典》----數字發音View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----最小調整有序View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----連結串列分割View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----原串翻轉View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----畫素翻轉View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----翻轉子串View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----最大和子矩陣View程式設計師面試矩陣
- 《Cracking the Coding Interview程式設計師面試金典》----字串變換(字典樹)View程式設計師面試字串
- 《Cracking the Coding Interview程式設計師面試金典》----實時中位數View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----整數對查詢View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----單詞最近距離View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----連結串列A+BView程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----迴文連結串列View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----確定字元互異View程式設計師面試字元
- 《Cracking the Coding Interview程式設計師面試金典》----基本字串壓縮View程式設計師面試字串
- 《Cracking the Coding Interview程式設計師面試金典》----C++過載>>和View程式設計師面試C++
- 《Cracking the Coding Interview程式設計師面試金典》----最大連續數列和View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----最大字母矩陣(字母相同)View程式設計師面試矩陣
- 《Cracking the Coding Interview程式設計師面試金典》----最大子方塊(尋找01)View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----確定兩串亂序同構View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----另類加法(不得使用+-x/運算子號)View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----下一個元素(下一個比他大的)View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----連結串列中倒數第k個結點View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----從0到n中某個數字的個數View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----下一個較大元素(所有比他大中最小的)View程式設計師面試
- 【程式設計師面試金典】洪水程式設計師面試
- 程式設計師面試金典Chapter1程式設計師面試APT
- 技術面試聖經《Cracking the Coding Interview》題解C++版面試ViewC++
- 程式設計師面試金典--筆記(精華篇)程式設計師面試筆記
- cracking the coding interview系列C#實現ViewC#
- 【程式設計師面試金典】20180801程式設計師面試
- 智力題(程式設計師面試經典)程式設計師面試
- android程式設計師面試寶典Android程式設計師面試