| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 614 人关注过本帖
标题:在顺序表中插入元素
取消只看楼主 加入收藏
小代帅帅
Rank: 1
来 自:北京昌平
等 级:新手上路
帖 子:92
专家分:7
注 册:2013-5-11
结帖率:89.66%
收藏
已结贴  问题点数:15 回复次数:0 
在顺序表中插入元素
各位大神们,小菜鸟请求代码帮助,以下是我自己构思的代码,编译总出错,这是怎么回事啊,请帮忙细致的解释一下···先谢谢啦··题目是:下建立一个顺序表,然后在第i个位置插入一个元素。
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#define OK 1
#define ERROR 0
#define OVERFLOW 0
#define LIST_INIT_SIZE 100
#define LISTINCREMENT 10
typedef struct
{
    int *elem;
    int length;
    int listsize;
}Sqlist;//这里是l

int InitList_Sq(Sqlist* L)//用指针
{
    L->elem=(int *)malloc(LIST_INIT_SIZE*sizeof(int));
    if(!L->elem)
        exit(OVERFLOW);
    L->length=0;
    L->listsize=LIST_INIT_SIZE;
    return OK;
}

int createList_Sq(Sqlist * L)///用指针

{
    int i,j;
    j=L->length;
    printf("Input the datas:");
    for(i=j;i>0;i--)
        scanf("%d",&(L->elem[i]));
    return OK;
}

int main(void)
{
    int i,n;
    Sqlist L;
    //clrscr();
    InitList_Sq(&L);
    printf("\nInput the length of the List L:");
    scanf("%d",&n);
    L.length=n;
    createList_Sq(&L);
    printf("OutPut the datas:");
    for(i=1;i<=L.length;i++)
        printf("%d ",L.elem[i]);
      
    return 0;
}
搜索更多相关主题的帖子: include 元素 
2013-11-01 21:50
快速回复:在顺序表中插入元素
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016872 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved