原创 數據結構-查找(C語言)——順序查找代碼篇

順序查找 //順序查找 #include<stdio.h> #define MAXSIZE 30 typedef struct { int key;//int爲關鍵字key的數據類型 char data;//其他數據,可有可無