線性表的操做

void EmptyList(List *L) { L->length=0; } 數組 //線性表的清空即將表長度置爲零。函數 //判空即判斷順序表長度是否爲0。spa //順序表元素個數即L->length。指針 List * CreateList(int len) { List*L=(List*)malloc(sizeof(List));//申請順序表空間  L->length=0;//初始長
相關文章
相關標籤/搜索