L.data=(int*)malloc((L.MaxSize+len)*sizeof(int));
时间: 2023-08-17 22:04:36 浏览: 141
这段代码是用于动态分配内存空间它使用了malloc函数来分配一块内存空间,大小为`(L.MaxSize+len)*sizeof(int)`字节。然后将返回的内存地址赋值给了`L.data`,这个变量的类型是`int*`,即指向int类型数据的指针。这样,`L.data`就指向了一个能够容纳`(L.MaxSize+len)`个int类型数据的连续内存空间。
相关问题
#include <stdio.h> #define InitSize 10 typedef struct{ int *data; int MaxSize; int length; }SeqList; //void InitList(SeqList &L){ // //用 malloc函数申请一片连续的存储空间 // L.data=(int *)malloc(InitSize*sizeof(int)); // L.length=0; // L.MaxSize=InitSize; //} //增加动态数组的长度 //void IncreaseSize(SeqList &L, int len){ // int *p=L.data; // L.data=(int *)malloc((L.MaxSize+len)*sizeof(int)); // for(int i=0; i<L.length;i++){ // L.data[i]=p[i]; // } // L.MaxSize=L.MaxSize+len; // free(p); //} //插入操作,在表L中的第i个位置插入指定元素e bool ListInsert(SeqList &L,int i,int e){ if(i<1||i>L.length+1)//判断要插入的位置是否合法 return false; if(L.length>=InitSize)//超出空间了 return false; for(int j=L.length;j>=i;j--)//移动顺序表中的元素 L.data[j]=L.data[j-1]; L.data[i-1]=e;//数组下标从零开始,插入第一个位置,访问的下标为0 L.length+=1; return true; } //删除数据表元素 void PrintList(SeqList L){ for(int i=0;i<L.length;i++){ printf("%4d",L.data[i]); } printf("\n"); } int main() { SeqList L; bool ret; //手动赋值 L.data[0]=1; L.data[1]=2; L.data[2]=3; L.data[3]=4; ret=ListInsert(L,2,60); if(ret){ printf("插入成功\n"); PrintList(L); }else{ printf("插入失败\n"); } return 0; }哪里有错
在你的代码中,存在以下几个问题:
1. 在使用 `SeqList` 结构体时,你没有在 `main` 函数中初始化 `L.data` 数组。在使用指针时,需要先分配内存空间。你可以在 `main` 函数中使用 `malloc` 函数为 `L.data` 分配内存空间,或者在 `InitList` 函数中进行初始化。
2. 在 `ListInsert` 函数中,你使用 `L.length` 来判断是否超出了顺序表的最大长度,但是在插入元素之前没有将 `L.length` 初始化为 0。在初始化 `SeqList` 结构体时,应该将 `L.length` 初始化为 0。
3. 在 `ListInsert` 函数中,移动元素时,循环的终止条件应该是 `j > i-1` 而不是 `j >= i`。因为数组下标从 0 开始,所以要将元素往后移动一个位置,需要从最后一个元素开始移动。
4. 在 `ListInsert` 函数中,插入元素时将 `e` 赋值给了 `L.data[i-1]`,这是正确的。但是你的注释写的是插入第一个位置,实际上应该是插入第 i 个位置。
修复以上问题的代码如下:
```c
#include <stdio.h>
#include <stdlib.h>
#define InitSize 10
typedef struct{
int *data;
int MaxSize;
int length;
}SeqList;
void InitList(SeqList &L){
L.data = (int *)malloc(InitSize * sizeof(int));
L.length = 0;
L.MaxSize = InitSize;
}
bool ListInsert(SeqList &L, int i, int e){
if(i < 1 || i > L.length+1)
return false;
if(L.length >= InitSize)
return false;
for(int j = L.length-1; j >= i-1; j--)
L.data[j+1] = L.data[j];
L.data[i-1] = e;
L.length++;
return true;
}
void PrintList(SeqList L){
for(int i = 0; i < L.length; i++){
printf("%4d", L.data[i]);
}
printf("\n");
}
int main() {
SeqList L;
bool ret;
InitList(L);
L.data[0] = 1;
L.data[1] = 2;
L.data[2] = 3;
L.data[3] = 4;
ret = ListInsert(L, 2, 60);
if(ret){
printf("插入成功\n");
PrintList(L);
}else{
printf("插入失败\n");
}
free(L.data);
return 0;
}
```
请注意,我在代码中增加了 `<stdlib.h>` 头文件的引用,并在 `InitList` 函数中添加了内存分配和释放的操作。
希望这可以解决你的问题!如果还有其他问题,请随时提问。
#include<iostream> #include<cstring> #include<cstdlib> #define MAXSIZE 100 typedef char ElemType ; typedef struct TNode{ ElemType data; struct TNode * LChild,*RChild; }Tree,*BiTree; char mid[MAXSIZE],pre[MAXSIZE]; BiTree create(char data){ BiTree q=(BiTree)malloc(sizeof(Tree)); q->data=data; q->LChild=NULL; q->RChild=NULL; return q; } BiTree BuildTree(char *preorder,char *inorder,int len){ if(len==0)return NULL; else if(len==1)return create(*preorder); else{ BiTree newnode=create(*(preorder)); int index=0; for(int i=0;i<len;i++){ if(*(inorder+i)==*(preorder)) {index=i; break; } } newnode->LChild=BuildTree(preorder+1,inorder,index); newnode->RChild=BuildTree(preorder+index+1,inorder+index+1,len-index-1); } } void postorder(Tree*S){ if(S==NULL)return; postorder(S->LChild); postorder(S->RChild);std::cout<<S->data; } int main(){ char preorder[50]; char inorder[50]; std::cin>>preorder; std::cin>>inorder; int len=strlen(preorder); BiTree root=BuildTree(preorder,inorder,len); postorder(root); return 0; }为什么输出的不对
您提供的代码中存在一个问题,即在 `BuildTree` 函数中,当 `len>1` 时,创建了新节点 `newnode`,但没有将其返回。这会导致程序无法正确构建二叉树。
修改方法:在 `BuildTree` 函数中添加 `return newnode;` 语句,将新节点返回即可。
另外,您可能需要注意输入的先序序列和中序序列是否合法。如果序列中存在非法字符或者序列长度不匹配等问题,都有可能导致程序输出不正确。
阅读全文