摘要: #include<stdio.h> int n, k, m, arr[25]; int select(int s, int rec, int count) { while (count--) { if(rec == 1) { //每次都要从本身开始,所以第一次循环是开始处的人,因为数组中1~10的值 阅读全文
posted @ 2020-12-19 20:11 loliconsk 阅读(172) 评论(0) 推荐(0)
摘要: 1.哈希表的声明文件 //静态哈希表 #pragma once #define MAX_SIZE 10 typedef int DateType; typedef enum { EXIST, EMPTY, DELET }state; //哈希表中的每一个节点 typedef struct HTEle 阅读全文
posted @ 2020-12-19 11:41 loliconsk 阅读(69) 评论(0) 推荐(0)