高手,解决一下拉,怎么做啊
在顺序表的程序加入函数完成两个顺有序顺序表的合并,将合并以后的顺序表中的结果在主函数中输出,将主函数补充完。#include<stdio.h>
#include<malloc.h>
#include<conio.h>
#define ERROR 0
#define OK 1
#define EQUAL 1
#define OVERFLOW -1
#define LIST_INIT_SIZE 100
#define LISTINCREMENT 10
#define NULL 0
typedef char ElemType;
typedef struct node
{
ElemType data;
struct node *next;
}LNode ,*LinkList;
LinkList creat_head(){
}
LinkList creat_rear(){
}
void insert(LinkList head, int i)
{}
void delete (Lindlist head,ElemType e)
{}
main() {
LindList h;