(3)在递增有序的顺序表中插入一个新结点x,保持顺序表的有序性。
(2012-05-29 18:31:22)
标签:
顺序表数据元素打印输出函数有序性it |
#include <stdio.h>
#define maxsize 20
typedef int datatype;
typedef
datatype data[maxsize];
int
last;
}sequenlist;
void CreateList(sequenlist *L,int n)
{int i;
printf("请你输入数据元素:\n");
for(i=0;i<n;i++)
}
InsertaInteger(sequenlist *L,int c)
{
}
main()
{
}