소개글
해싱함수
목차
없음
본문내용
#include <string.h>
#include <stdio.h>
#define TABLE_SIZE 10
typedef struct table
{
int stu_num;
char stu_name[20];
}Table;
Table S_TABLE[TABLE_SIZE];
int EMPTY = -1;
void init_table(void);
void insert(void);
int division(int num);
void search(void);
참고 자료
없음