LeetCode #73 Set Matrix Zeroes

matrix_1.png
matrix_2.png
/**
* Abstract: find the anchor and zero out its associate row&col, during 
* which we collect the zero position when encountering one; after that 
* we search the remaining entries for new anchors(which might be 
* repeatedly enqueued).
*/
typedef enum Type {
    TypeCol = 1 << 1,
    TypeRow = 1 << 2,
    TypeRowCol = TypeCol | TypeRow
};
typedef struct QNodeStruct {
    int i, j;
    enum Type type;
    struct QNodeStruct *next;
}*QNode;

QNode QNodeCreate(int i, int j, enum Type type) {
    QNode x = (QNode)malloc(sizeof(*x));
    x->i = i;
    x->j = j;
    x->type = type;
    x->next = NULL;
    return x;
}

typedef struct QueueStruct {
    int count;
    QNode head, tail;
}*Queue;

Queue QueueCreate() {
    Queue queue = (Queue)malloc(sizeof(*queue));
    queue->count = 0;
    queue->tail = queue->head = NULL;
    return queue;
}

void QueueEnqueue(Queue queue, int i, int j, enum Type type) { 
    QNode head = QNodeCreate(i, j, type);
    if (queue->count == 0) {
        queue->head = queue->tail = head;
    } else {
        queue->head->next = head;
        queue->head = head;
    }
    queue->count++;
}

void QueueDequeue(Queue queue, int *i, int *j, enum Type *type) { 
    QNode tail = queue->tail;
    queue->tail = tail->next;
    queue->count--;
    *i = tail->i;
    *j = tail->j;
    *type = tail->type;
    free(tail);
}

bool QueueIsEmpty(Queue queue) { return queue->count == 0; }

void set_zero(int **matrix, int m, int n, int row, int col, enum Type type, Queue queue, bool *rows, bool *cols) {
    if ((type & TypeRow) && !(rows[row])) {
        rows[row] = true;
        for (int j = 0; j < col; j++) {
            if (matrix[row][j] == 0) {
                if (!(cols[j])) { QueueEnqueue(queue, row, j, TypeCol); }
            } else {
                matrix[row][j] = 0;
            }
        }
        for (int j = col + 1; j < n; j++) {
            if (matrix[row][j] == 0) {
                if (!(cols[j])) { QueueEnqueue(queue, row, j, TypeCol); }
            } else {
                matrix[row][j] = 0;
            }
        }
    }
    if ((type & TypeCol) && !(cols[col])) {
        cols[col] = true;
        for (int i = 0; i < row; i++) {
            if (matrix[i][col] == 0) {
                if (!(rows[i])) { QueueEnqueue(queue, i, col, TypeRow); }
            } else {
                matrix[i][col] = 0;
            }
        }
        for (int i = row + 1; i < m; i++) {
            if (matrix[i][col] == 0) {
                if (!(rows[i])) { QueueEnqueue(queue, i, col, TypeRow); }
            } else {
                matrix[i][col] = 0;
            }
        }
    }
}

void find_next_zero(int **matrix, int m, int n, int row, Queue queue, bool *rows, bool *cols) {
    for (int i = row; i < m; i++) {
        if (!(rows[i])) {
            for (int j = 0; j < n; j++) {
                if (!(cols[j]) && matrix[i][j] == 0) { 
                    QueueEnqueue(queue, i, j, TypeRowCol);
                    return;
                }
            }
        }
    }
}

void setZeroes(int** matrix, int matrixSize, int* matrixColSize) {
    int m = matrixSize, n = *matrixColSize, row, col;
    bool *rows = (bool*)malloc(m * sizeof(*rows)), *cols = (bool*)malloc(n * sizeof(*cols));
    for (int i = 0; i < m; i++) { rows[i] = false; }
    for (int j = 0; j < n; j++) { cols[j] = false; }
    enum Type type;
    Queue queue = QueueCreate();
    find_next_zero(matrix, m, n, 0, queue, rows, cols);

    while (!QueueIsEmpty(queue)) {
        QueueDequeue(queue, &row, &col, &type);
        set_zero(matrix, m, n, row, col, type, queue, rows, cols);
        if (type == TypeRowCol) { find_next_zero(matrix, m, n, row + 1, queue, rows, cols); }
    }
}
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末翻诉,一起剝皮案震驚了整個濱河市椒拗,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖涡扼,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異妄帘,居然都是意外死亡唆鸡,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門脑慧,熙熙樓的掌柜王于貴愁眉苦臉地迎上來魄眉,“玉大人,你說我怎么就攤上這事闷袒】勇桑” “怎么了?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵囊骤,是天一觀的道長晃择。 經(jīng)常有香客問我,道長也物,這世上最難降的妖魔是什么宫屠? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮滑蚯,結果婚禮上浪蹂,老公的妹妹穿的比我還像新娘。我一直安慰自己膘魄,他們只是感情好乌逐,可當我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著创葡,像睡著了一般浙踢。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上灿渴,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天洛波,我揣著相機與錄音胰舆,去河邊找鬼。 笑死蹬挤,一個胖子當著我的面吹牛缚窿,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播焰扳,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼倦零,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了吨悍?” 一聲冷哼從身側響起扫茅,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎育瓜,沒想到半個月后葫隙,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡躏仇,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年恋脚,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片焰手。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡糟描,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出册倒,到底是詐尸還是另有隱情蚓挤,我是刑警寧澤,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布驻子,位于F島的核電站灿意,受9級特大地震影響,放射性物質發(fā)生泄漏崇呵。R本人自食惡果不足惜缤剧,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望域慷。 院中可真熱鬧荒辕,春花似錦、人聲如沸犹褒。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽叠骑。三九已至李皇,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間宙枷,已是汗流浹背掉房。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工茧跋, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人卓囚。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓瘾杭,卻偏偏與公主長得像,于是被迫代替她去往敵國和親哪亿。 傳聞我的和親對象是個殘疾皇子粥烁,可洞房花燭夜當晚...
    茶點故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內(nèi)容