当前位置:   article > 正文

数据结构_数据结构*p

数据结构*p
//数据结构对  int *p;的操作,其中开阔数组空间最重要
#include <stdio.h>
#include <stdlib.h>
typedef int ElemType;
typedef int Status;
#define LIST_INIT_SIZE 100
#define LISTINCREMENT 10
#define OK 1
#define ERROR 0
typedef struct Sqlist
{
    ElemType elem[10];
    int length;
    int listsize;
}*Sqlist;
typedef struct Lnode
{
    ElemType data;
    Status  *next;
}Lnode,*LinkList;

Status initializer_Sp(Sqlist *L)   //以形参的方式传入结构体,所以不能改变其中本质
{
    L->elem = (int *)malloc(LIST_INIT_SIZE*sizeof(ElemType));
    if(!L->elem) exit(ERROR);
    L->length = 0;
    L->listsize = LIST_INIT_SIZE;
    return OK;
}
void insert(Sqlist L,int x);
void insert(Sqlist L,int x)
{
    //if(L)
}
int main()
{
    Sqlist L = (Sqlist)malloc(sizeof(struct Sqlist));  //然而在这里使用的时候正常操作
    int i=0;
    initializer_Sp(L);
    printf("*");
    /*for(i=0;i<list_init_size;i++)   //所以在这的时候进行卡死
    {
        //l.elem[i]=0;
        int *p;
        p = l.elem[i];
        printf("%d\n",*p);
        *p = i;

    }*/
    int pos;
    scanf("%d",&pos);
    L->elem[pos] = 1111;
    printf("%d\n", L->elem[pos]);
    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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/902669
推荐阅读
相关标签
  

闽ICP备14008679号