1 #include"stdio.h" 2 #define Maxsize 30 3 typedef struct{ 4 int data[Maxsize]; 5 int n; 6 }Seqlist; 7 int Search(Seqlist&L,int x) 8 { 9 int i;10 for(i=0;i
本文共 224 字,大约阅读时间需要 1 分钟。
1 #include"stdio.h" 2 #define Maxsize 30 3 typedef struct{ 4 int data[Maxsize]; 5 int n; 6 }Seqlist; 7 int Search(Seqlist&L,int x) 8 { 9 int i;10 for(i=0;i
转载于:https://www.cnblogs.com/jjbbbb/p/10961066.html