91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C語言如何創建字典

小億
313
2023-11-22 15:51:36
欄目: 編程語言

在C語言中,并沒有直接提供字典這種數據結構,但可以通過自定義結構體和鏈表來實現類似字典的功能。以下是一種簡單的實現方式:

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

// 定義字典節點結構體
typedef struct Node {
    char key[50];  // 鍵
    int value;     // 值
    struct Node* next;  // 指向下一個節點的指針
} Node;

// 創建新節點
Node* createNode(char* key, int value) {
    Node* newNode = (Node*)malloc(sizeof(Node));
    strcpy(newNode->key, key);
    newNode->value = value;
    newNode->next = NULL;
    return newNode;
}

// 向字典中插入鍵值對
void insert(Node** dictionary, char* key, int value) {
    Node* newNode = createNode(key, value);
    newNode->next = *dictionary;
    *dictionary = newNode;
}

// 從字典中查找鍵對應的值
int find(Node* dictionary, char* key) {
    Node* cur = dictionary;
    while (cur != NULL) {
        if (strcmp(cur->key, key) == 0) {
            return cur->value;
        }
        cur = cur->next;
    }
    return -1;  // 鍵不存在時返回-1
}

int main() {
    Node* dictionary = NULL;  // 初始化字典為空

    // 向字典中插入鍵值對
    insert(&dictionary, "apple", 1);
    insert(&dictionary, "banana", 2);
    insert(&dictionary, "orange", 3);

    // 從字典中查找鍵對應的值
    int value = find(dictionary, "banana");
    if (value != -1) {
        printf("Value: %d\n", value);
    } else {
        printf("Key not found.\n");
    }

    return 0;
}

這段代碼創建了一個簡單的字典,使用鏈表來存儲鍵值對。可以通過insert函數向字典中插入鍵值對,通過find函數從字典中查找鍵對應的值。在主函數中演示了如何使用這個字典。

0
宜兰县| 将乐县| 阜平县| 平舆县| 都昌县| 延吉市| 临沭县| 北京市| 双牌县| 手游| 昌乐县| 临桂县| 霍林郭勒市| 大同县| 邛崃市| 抚顺县| 云龙县| 赤峰市| 虞城县| 那坡县| 襄樊市| 南溪县| 鲁山县| 读书| 义马市| 滁州市| 社旗县| 陕西省| 巴林左旗| 视频| 汉阴县| 定陶县| 龙胜| 新竹市| 犍为县| 光山县| 高邮市| 北辰区| 长垣县| 盐池县| 乾安县|