在C语言中,结构体嵌套是指在一个结构体内部定义另一个结构体。这种特性可以与C语言的其他特性结合使用,以实现更复杂的数据结构和功能。以下是一些常见的结合方式:
#include <stdio.h>
typedef struct {
int x;
int y;
} Point;
void print_point(Point *p) {
printf("(%d, %d)\n", p->x, p->y);
}
int main() {
Point p = {3, 4};
print_point(&p);
return 0;
}
#include <stdio.h>
typedef struct {
int x;
int y;
} Point;
int main() {
Point points[3] = {{1, 2}, {3, 4}, {5, 6}};
for (int i = 0; i < 3; i++) {
printf("(%d, %d)\n", points[i].x, points[i].y);
}
return 0;
}
#include <stdio.h>
#include <stdlib.h>
typedef struct Node {
int data;
struct Node *next;
} Node;
Node *create_node(int data) {
Node *new_node = (Node *)malloc(sizeof(Node));
new_node->data = data;
new_node->next = NULL;
return new_node;
}
int main() {
Node *head = create_node(1);
head->next = create_node(2);
head->next->next = create_node(3);
Node *current = head;
while (current != NULL) {
printf("%d -> ", current->data);
current = current->next;
}
printf("NULL\n");
return 0;
}
#include <stdio.h>
typedef struct {
int type;
union {
int num;
float f;
} data;
} Data;
int main() {
Data d1;
d1.type = 1;
d1.data.num = 42;
printf("Type: %d, Value: %d\n", d1.type, d1.data.num);
Data d2;
d2.type = 2;
d2.data.f = 3.14;
printf("Type: %d, Value: %f\n", d2.type, d2.data.f);
return 0;
}
这些示例展示了如何将结构体嵌套与其他C语言特性结合使用,以实现更复杂的数据结构和功能。