问题描述
- 数据结构问题小白求解
-
我想得到这个顺序表的长度,为什么会给我得出一个7位数呢,显然不是啊。代码如下:
#include
#include
#define Max 15
typedef int ElemType;
typedef struct{
ElemType data[Max];
int length;}SqList;
void CreateList(int n){
ElemType a[10];
SqList *L;
n=10;
L =(SqList *)malloc(sizeof(SqList));
for(int i=0;i
L ->data[i]=a[i];
L ->length=n;}
int ListLength(SqList *L){
return(L ->length);
}
main(){
printf("%d
",ListLength);
return 0;
}
解决方案
printf("%d
",ListLength);
这里输出的是ListLength这个函数的地址,而不是长度
应该是printf("%d
",ListLength(你的链表));
解决方案二:
【数据结构】递归求解迷宫问题
时间: 2024-11-18 14:36:13