C語言并沒有內置的泛型支持,但是可以通過宏定義和預處理指令來實現類似泛型的功能。以下是一種常見的實現方式:
#define type_t int
#define compare(x, y) ((x) > (y) ? 1 : ((x) < (y) ? -1 : 0))
#define stack(type) \
struct { \
type *data; \
int top; \
}
#define stack_init(s) \
do { \
s.data = (type *)malloc(sizeof(type) * MAX_SIZE); \
s.top = -1; \
} while(0)
#define stack_push(s, x) \
do { \
s.data[++s.top] = x; \
} while(0)
#define stack_pop(s) (s.data[s.top--])
#define stack_top(s) (s.data[s.top])
int main() {
stack(type_t) s;
stack_init(s);
stack_push(s, 10);
stack_push(s, 20);
printf("%d\n", stack_pop(s));
printf("%d\n", stack_pop(s));
free(s.data);
return 0;
}
通過這種方式,可以實現類似泛型的功能,在不同的數據類型和操作上進行通用的操作。需要注意的是,在使用宏定義時要小心避免出現重復定義和命名沖突的問題。