線性表初始化

初始化一個線性表就是將其設置成一個空表,長度設置爲0.ide

如下是代碼實現:url

#include <stdio.h>
#define MAXSIZE 20

typedef struct 

    int abc[MAXSIZE];
    int length;
}hello;

int Init_list(hello *L)
{
    L->length = 0;
    retrun 0;
}

int main(int argc,char **argv)
{
    int i;
    hello L;
    i = Init_list(&L);
    printf("初始化後L的長度是:%d.\n",L.length);
    
}

 

 

spacer.gif

相關文章
相關標籤/搜索