中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言字符串中的前綴樹(Trie)應用

發布時間:2024-08-30 09:41:47 來源:億速云 閱讀:97 作者:小樊 欄目:編程語言

前綴樹(Trie)是一種數據結構,它可以高效地存儲和查詢字符串集合

下面是一個簡單的 C 語言實現:

#include<stdio.h>
#include <stdlib.h>
#include<string.h>

typedef struct TrieNode {
    struct TrieNode* children[26]; // 26 個指向子節點的指針,對應 26 個英文字母
    int isEndOfWord; // 標記當前節點是否為一個單詞的結尾
} TrieNode;

// 創建新的 Trie 節點
TrieNode* createTrieNode() {
    TrieNode* node = (TrieNode*)malloc(sizeof(TrieNode));
    memset(node->children, 0, sizeof(node->children));
    node->isEndOfWord = 0;
    return node;
}

// 插入一個單詞到 Trie 中
void insert(TrieNode* root, const char* word) {
    TrieNode* node = root;
    for (int i = 0; word[i] != '\0'; i++) {
        int index = word[i] - 'a';
        if (!node->children[index]) {
            node->children[index] = createTrieNode();
        }
        node = node->children[index];
    }
    node->isEndOfWord = 1;
}

// 在 Trie 中查找一個單詞
int search(TrieNode* root, const char* word) {
    TrieNode* node = root;
    for (int i = 0; word[i] != '\0'; i++) {
        int index = word[i] - 'a';
        if (!node->children[index]) {
            return 0;
        }
        node = node->children[index];
    }
    return node->isEndOfWord;
}

// 測試代碼
int main() {
    TrieNode* root = createTrieNode();
    insert(root, "hello");
    insert(root, "world");
    printf("Search 'hello': %d\n", search(root, "hello"));
    printf("Search 'world': %d\n", search(root, "world"));
    printf("Search 'apple': %d\n", search(root, "apple"));
    return 0;
}

這個示例展示了如何使用前綴樹(Trie)來存儲和查詢字符串。首先,我們定義了一個 TrieNode 結構體,用于表示 Trie 中的每個節點。然后,我們實現了 createTrieNode 函數來創建新的 Trie 節點。接下來,我們實現了 insert 函數來將一個單詞插入到 Trie 中,以及 search 函數來在 Trie 中查找一個單詞。最后,我們編寫了一個簡單的測試程序來演示如何使用這些函數。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

灌南县| 锦屏县| 富川| 平陆县| 上林县| 元阳县| 望城县| 高淳县| 神农架林区| 石狮市| 裕民县| 武鸣县| 辛集市| 宝丰县| 读书| 宣威市| 上犹县| 衡水市| 剑河县| 同德县| 济宁市| 全椒县| 梁平县| 葵青区| 且末县| 澜沧| 阿克苏市| 宁蒗| 黔东| 拉孜县| 凤庆县| 犍为县| 乐山市| 青神县| 淮北市| 通州区| 谷城县| 岢岚县| 措勤县| 林口县| 曲水县|