妙不可言的算法(1.1)动态建立顺序表

/* 编写一个程序,动态的建立一个顺序表。要求:顺序表初始长度为10,向顺序表中输入 15个整数,并打印出来: */ #include <stdio.h> #include <stdlib.h> #include <conio.h> #define MaxSize 10 typedef int Integer; typedef struct { Integer *elem; Inte
相关文章
相关标签/搜索