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

溫馨提示×

C標準庫search函數與鏈表查找

小樊
81
2024-08-06 18:31:14
欄目: 編程語言

在C標準庫中,有一些函數可以用來進行查找操作,比如bsearch函數可以用來在一個已排序的數組中查找指定元素。另外,C語言中也可以使用鏈表來實現查找操作。以下是一個簡單的使用鏈表實現查找操作的示例代碼:

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

// 定義鏈表節點結構
typedef struct Node {
    int data;
    struct Node* next;
} Node;

// 添加節點到鏈表
void append(Node** head, int data) {
    Node* new_node = (Node*)malloc(sizeof(Node));
    new_node->data = data;
    new_node->next = NULL;

    // 如果鏈表為空,直接將新節點設為頭節點
    if (*head == NULL) {
        *head = new_node;
        return;
    }

    // 找到尾節點,并將新節點連接到尾節點
    Node* current = *head;
    while (current->next != NULL) {
        current = current->next;
    }
    current->next = new_node;
}

// 查找節點
Node* search(Node* head, int data) {
    Node* current = head;
    while (current != NULL) {
        if (current->data == data) {
            return current;
        }
        current = current->next;
    }
    return NULL;
}

int main() {
    Node* head = NULL;

    // 添加一些節點到鏈表
    append(&head, 1);
    append(&head, 2);
    append(&head, 3);
    append(&head, 4);

    // 在鏈表中查找元素
    Node* result = search(head, 3);
    if (result != NULL) {
        printf("Element found: %d\n", result->data);
    } else {
        printf("Element not found\n");
    }

    return 0;
}

在上面的示例代碼中,我們定義了一個簡單的鏈表結構,并實現了添加節點和查找節點的功能。通過這種方式,我們可以在鏈表中高效地查找指定元素。

0
成安县| 罗田县| 彭水| 广水市| 佛山市| 老河口市| 防城港市| 盱眙县| 清徐县| 麦盖提县| 琼结县| 永春县| 灵寿县| 自贡市| 河东区| 招远市| 延庆县| 开鲁县| 敦化市| 朔州市| 金坛市| 增城市| 莱阳市| 长汀县| 新丰县| 常德市| 苏州市| 桦川县| 云林县| 英吉沙县| 庆城县| 普宁市| 晋江市| 庐江县| 东山县| 阳曲县| 黄陵县| 汝州市| 太仆寺旗| 万源市| 汤原县|