leetcode 第九周 矩陣元素置零

2021-07-30 22:53:21 字數 405 閱讀 6142

問題描述:given a mx 

nmatrix, if an element is 0, set its entire row and column to 0. do it in place.

問題分析:由題意可知,基本思路就是維持乙個長度為m和乙個長度為n的陣列,用來標註哪些行和哪些列為零。由頭到尾遍歷一遍整個矩陣,然後再根據所維持的陣列,對原矩陣的對應元素進行置零操作。

實現**:

class solution ;

column.resize(n);

column = ;

for (int i = 0; i < m; i++)

}} for (int k1 = 0; k1 < n; k1++)}}

}};

第九周 工資

設計乙個工資類 salary 其中的資料成員包括職工人數 number,人數不定 和number個職工的工資salary,要求輸入職工工資並逐個輸出。class salary 下面定義類的成員函式 下面是測試函式 int main 答案 includeusing namespace std clas...

第九周總結

二 從 activitythread main 到 activity oncreate handler 訊息機制 handler 訊息機制除了 handler 本身外,還包含 looper messagequeue message,訊息機制需要有訊息佇列 訊息迴圈 訊息處理 如下 handler 傳...

第九周作業

1 編寫指令碼,接受二個位置引數,magedu和 www,判斷系統是否有magedu,如果沒有則自動建立magedu使用者,並自動設定家目錄為 www vim create user.sh bin bash if ne 2 then echo 0 username directory exit 1 ...