#include
#define MaxSize 50
typedef int ElemType;
typedef struct{
ElemType data[MaxSize];
int length;
}SqList;
bool ListInsert(SqList &L, int i, ElemType element){
if(i<1 || i>L.length+1){
return false;
}
if(L.length == MaxSize){
return false;
}
for(int j=L.length; j>=i; j--){
L.data[j] = L.data[j-1];
}
L.data[i-1] = element;
L.length++;
return true;
};
void PrintList(SqList L){
int i;
for(i=0; i<L.length; i++){
printf("%3d", L.data[i]);
}
printf("\n");
}
int main() {
SqList L;
bool ret;
L.data[0] = 1;
L.data[1] = 2;
L.data[2] = 3;
L.length = 3;
ret = ListInsert(L, 2, 60);
if(ret){
printf("insert sqlist success\n");
PrintList(L);
}else{
printf("insert sqlist failed\n");
}
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58