mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 14:18:20 +08:00 
			
		
		
		
	* First commit * Update mkdocs.yml * Translate all the docs to traditional Chinese * Translate the code files. * Translate the docker file * Fix mkdocs.yml * Translate all the figures from SC to TC * 二叉搜尋樹 -> 二元搜尋樹 * Update terminology. * Update terminology * 构造函数/构造方法 -> 建構子 异或 -> 互斥或 * 擴充套件 -> 擴展 * constant - 常量 - 常數 * 類 -> 類別 * AVL -> AVL 樹 * 數組 -> 陣列 * 係統 -> 系統 斐波那契數列 -> 費波那契數列 運算元量 -> 運算量 引數 -> 參數 * 聯絡 -> 關聯 * 麵試 -> 面試 * 面向物件 -> 物件導向 歸併排序 -> 合併排序 范式 -> 範式 * Fix 算法 -> 演算法 * 錶示 -> 表示 反碼 -> 一補數 補碼 -> 二補數 列列尾部 -> 佇列尾部 區域性性 -> 區域性 一摞 -> 一疊 * Synchronize with main branch * 賬號 -> 帳號 推匯 -> 推導 * Sync with main branch * First commit * Update mkdocs.yml * Translate all the docs to traditional Chinese * Translate the code files. * Translate the docker file * Fix mkdocs.yml * Translate all the figures from SC to TC * 二叉搜尋樹 -> 二元搜尋樹 * Update terminology * 构造函数/构造方法 -> 建構子 异或 -> 互斥或 * 擴充套件 -> 擴展 * constant - 常量 - 常數 * 類 -> 類別 * AVL -> AVL 樹 * 數組 -> 陣列 * 係統 -> 系統 斐波那契數列 -> 費波那契數列 運算元量 -> 運算量 引數 -> 參數 * 聯絡 -> 關聯 * 麵試 -> 面試 * 面向物件 -> 物件導向 歸併排序 -> 合併排序 范式 -> 範式 * Fix 算法 -> 演算法 * 錶示 -> 表示 反碼 -> 一補數 補碼 -> 二補數 列列尾部 -> 佇列尾部 區域性性 -> 區域性 一摞 -> 一疊 * Synchronize with main branch * 賬號 -> 帳號 推匯 -> 推導 * Sync with main branch * Update terminology.md * 操作数量(num. of operations)-> 操作數量 * 字首和->前綴和 * Update figures * 歸 -> 迴 記憶體洩漏 -> 記憶體流失 * Fix the bug of the file filter * 支援 -> 支持 Add zh-Hant/README.md * Add the zh-Hant chapter covers. Bug fixes. * 外掛 -> 擴充功能 * Add the landing page for zh-Hant version * Unify the font of the chapter covers for the zh, en, and zh-Hant version * Move zh-Hant/ to zh-hant/ * Translate terminology.md to traditional Chinese
		
			
				
	
	
		
			151 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			151 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/**
 | 
						|
 * File: graph_adjacency_matrix.c
 | 
						|
 * Created Time: 2023-07-06
 | 
						|
 * Author: NI-SW (947743645@qq.com)
 | 
						|
 */
 | 
						|
 | 
						|
#include "../utils/common.h"
 | 
						|
 | 
						|
// 假設頂點數量最大為 100
 | 
						|
#define MAX_SIZE 100
 | 
						|
 | 
						|
/* 基於鄰接矩陣實現的無向圖結構體 */
 | 
						|
typedef struct {
 | 
						|
    int vertices[MAX_SIZE];
 | 
						|
    int adjMat[MAX_SIZE][MAX_SIZE];
 | 
						|
    int size;
 | 
						|
} GraphAdjMat;
 | 
						|
 | 
						|
/* 建構子 */
 | 
						|
GraphAdjMat *newGraphAdjMat() {
 | 
						|
    GraphAdjMat *graph = (GraphAdjMat *)malloc(sizeof(GraphAdjMat));
 | 
						|
    graph->size = 0;
 | 
						|
    for (int i = 0; i < MAX_SIZE; i++) {
 | 
						|
        for (int j = 0; j < MAX_SIZE; j++) {
 | 
						|
            graph->adjMat[i][j] = 0;
 | 
						|
        }
 | 
						|
    }
 | 
						|
    return graph;
 | 
						|
}
 | 
						|
 | 
						|
/* 析構函式 */
 | 
						|
void delGraphAdjMat(GraphAdjMat *graph) {
 | 
						|
    free(graph);
 | 
						|
}
 | 
						|
 | 
						|
/* 新增頂點 */
 | 
						|
void addVertex(GraphAdjMat *graph, int val) {
 | 
						|
    if (graph->size == MAX_SIZE) {
 | 
						|
        fprintf(stderr, "圖的頂點數量已達最大值\n");
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    // 新增第 n 個頂點,並將第 n 行和列置零
 | 
						|
    int n = graph->size;
 | 
						|
    graph->vertices[n] = val;
 | 
						|
    for (int i = 0; i <= n; i++) {
 | 
						|
        graph->adjMat[n][i] = graph->adjMat[i][n] = 0;
 | 
						|
    }
 | 
						|
    graph->size++;
 | 
						|
}
 | 
						|
 | 
						|
/* 刪除頂點 */
 | 
						|
void removeVertex(GraphAdjMat *graph, int index) {
 | 
						|
    if (index < 0 || index >= graph->size) {
 | 
						|
        fprintf(stderr, "頂點索引越界\n");
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    // 在頂點串列中移除索引 index 的頂點
 | 
						|
    for (int i = index; i < graph->size - 1; i++) {
 | 
						|
        graph->vertices[i] = graph->vertices[i + 1];
 | 
						|
    }
 | 
						|
    // 在鄰接矩陣中刪除索引 index 的行
 | 
						|
    for (int i = index; i < graph->size - 1; i++) {
 | 
						|
        for (int j = 0; j < graph->size; j++) {
 | 
						|
            graph->adjMat[i][j] = graph->adjMat[i + 1][j];
 | 
						|
        }
 | 
						|
    }
 | 
						|
    // 在鄰接矩陣中刪除索引 index 的列
 | 
						|
    for (int i = 0; i < graph->size; i++) {
 | 
						|
        for (int j = index; j < graph->size - 1; j++) {
 | 
						|
            graph->adjMat[i][j] = graph->adjMat[i][j + 1];
 | 
						|
        }
 | 
						|
    }
 | 
						|
    graph->size--;
 | 
						|
}
 | 
						|
 | 
						|
/* 新增邊 */
 | 
						|
// 參數 i, j 對應 vertices 元素索引
 | 
						|
void addEdge(GraphAdjMat *graph, int i, int j) {
 | 
						|
    if (i < 0 || j < 0 || i >= graph->size || j >= graph->size || i == j) {
 | 
						|
        fprintf(stderr, "邊索引越界或相等\n");
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    graph->adjMat[i][j] = 1;
 | 
						|
    graph->adjMat[j][i] = 1;
 | 
						|
}
 | 
						|
 | 
						|
/* 刪除邊 */
 | 
						|
// 參數 i, j 對應 vertices 元素索引
 | 
						|
void removeEdge(GraphAdjMat *graph, int i, int j) {
 | 
						|
    if (i < 0 || j < 0 || i >= graph->size || j >= graph->size || i == j) {
 | 
						|
        fprintf(stderr, "邊索引越界或相等\n");
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    graph->adjMat[i][j] = 0;
 | 
						|
    graph->adjMat[j][i] = 0;
 | 
						|
}
 | 
						|
 | 
						|
/* 列印鄰接矩陣 */
 | 
						|
void printGraphAdjMat(GraphAdjMat *graph) {
 | 
						|
    printf("頂點串列 = ");
 | 
						|
    printArray(graph->vertices, graph->size);
 | 
						|
    printf("鄰接矩陣 =\n");
 | 
						|
    for (int i = 0; i < graph->size; i++) {
 | 
						|
        printArray(graph->adjMat[i], graph->size);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
/* Driver Code */
 | 
						|
int main() {
 | 
						|
    // 初始化無向圖
 | 
						|
    GraphAdjMat *graph = newGraphAdjMat();
 | 
						|
    int vertices[] = {1, 3, 2, 5, 4};
 | 
						|
    for (int i = 0; i < 5; i++) {
 | 
						|
        addVertex(graph, vertices[i]);
 | 
						|
    }
 | 
						|
    int edges[][2] = {{0, 1}, {0, 3}, {1, 2}, {2, 3}, {2, 4}, {3, 4}};
 | 
						|
    for (int i = 0; i < 6; i++) {
 | 
						|
        addEdge(graph, edges[i][0], edges[i][1]);
 | 
						|
    }
 | 
						|
    printf("\n初始化後,圖為\n");
 | 
						|
    printGraphAdjMat(graph);
 | 
						|
 | 
						|
    /* 新增邊 */
 | 
						|
    // 頂點 1, 2 的索引分別為 0, 2
 | 
						|
    addEdge(graph, 0, 2);
 | 
						|
    printf("\n新增邊 1-2 後,圖為\n");
 | 
						|
    printGraphAdjMat(graph);
 | 
						|
 | 
						|
    /* 刪除邊 */
 | 
						|
    // 頂點 1, 3 的索引分別為 0, 1
 | 
						|
    removeEdge(graph, 0, 1);
 | 
						|
    printf("\n刪除邊 1-3 後,圖為\n");
 | 
						|
    printGraphAdjMat(graph);
 | 
						|
 | 
						|
    /* 新增頂點 */
 | 
						|
    addVertex(graph, 6);
 | 
						|
    printf("\n新增頂點 6 後,圖為\n");
 | 
						|
    printGraphAdjMat(graph);
 | 
						|
 | 
						|
    /* 刪除頂點 */
 | 
						|
    // 頂點 3 的索引為 1
 | 
						|
    removeVertex(graph, 1);
 | 
						|
    printf("\n刪除頂點 3 後,圖為\n");
 | 
						|
    printGraphAdjMat(graph);
 | 
						|
 | 
						|
    // 釋放記憶體
 | 
						|
    delGraphAdjMat(graph);
 | 
						|
 | 
						|
    return 0;
 | 
						|
}
 |