- 309 名前:デフォルトの名無しさん [2013/02/24(日) 19:51:01.69 ]
- >>305
表の仕様 #include <stdio.h> #include <stdlib.h> #include <string.h> #define NO 1 #define NAME 2 typedef enum{ Occupied,Empty,Deleted } Status; typedef struct{ int no; char name[10]; }Data; typedef struct{ Datadata; Statusstat; } Bucket; typedef struct{ int size; Bucket *table; } Hash;
|

|