静态链表

typedef struct{
    int data;
    int next;
}SList[10];

你可能感兴趣的:(静态链表)