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;
相关文章
相关标签/搜索