妙不可言的算法(1.1)動態建立順序表

/* 編寫一個程序,動態的建立一個順序表。要求:順序表初始長度爲10,向順序表中輸入 15個整數,並打印出來: */ #include <stdio.h> #include <stdlib.h> #include <conio.h> #define MaxSize 10 typedef int Integer; typedef struct { Integer *elem; Inte
相關文章
相關標籤/搜索