C hashtable demo
hash 表
链表数组:二级指针
基本操作 :初始化 插入 打印
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct node {
int data;
struct node *next;
}Node, *ptrNode;
int N = 10;
typedef Node **table;
int main()
{
table hashTable = (
原创
2021-03-14 09:03:35 ·
123 阅读 ·
0 评论