C語言實現合併兩個有序(從小到大)順序表爲一個順序表

#include<stdio.h> #include<malloc.h> typedef int ElemType; typedef int status; # define LIST_INIT_SIZE 100 # define OK 1 # define OVERFLOW -1 typedef struct{ ElemType *elem; int length;
相關文章
相關標籤/搜索