| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 614 人关注过本帖
标题:在顺序表中插入元素
只看楼主 加入收藏
小代帅帅
Rank: 1
来 自:北京昌平
等 级:新手上路
帖 子:92
专家分:7
注 册:2013-5-11
结帖率:89.66%
收藏
已结贴  问题点数:15 回复次数:3 
在顺序表中插入元素
各位大神们,小菜鸟请求代码帮助,以下是我自己构思的代码,编译总出错,这是怎么回事啊,请帮忙细致的解释一下···先谢谢啦··题目是:下建立一个顺序表,然后在第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
Osiris9
Rank: 4
来 自:九柱
等 级:业余侠客
帖 子:28
专家分:225
注 册:2013-10-25
收藏
得分:0 
后移

干旱时死去................丰水时重生!
2013-11-02 01:34
qunxingw
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:贵宾
威 望:24
帖 子:1676
专家分:7295
注 册:2011-6-30
收藏
得分:0 
把例题翻来复去的看,把函数一个一个的调试,把基础一次一次的巩固。理解插入数据的实际操作。在错误和折腾中成长!祝你成功

www.qunxingw.wang
2013-11-02 07:04
ljx小子
Rank: 8Rank: 8
来 自:星星
等 级:蝙蝠侠
威 望:2
帖 子:222
专家分:916
注 册:2013-10-7
收藏
得分:15 
程序代码:
#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=1;i<=j;i++)
        scanf("%d",&(L->elem[i]));
    return OK;
}
int insert(int i,Sqlist * L)
{ 
    int j,m;

 

 for(j=L->length+1;j>i;j--)

 {

 L->elem[j]=L->elem[j-1];

 }
printf("\ninput the date:");
scanf("%d",&m);
L->elem[j]=m;
return 0;
}

int main(void)
{
    int i,n,k;
    Sqlist L;
    //clrscr();
    InitList_Sq(&L);
    printf("\nInput the length of the List L:");
    scanf("%d",&n);
    L.length=n;
    createList_Sq(&L);
     printf("\n input the locate:");
    scanf("%d",&k);
    insert(k,&L);
    printf("OutPut the datas:");
    for(i=1;i<=L.length+1;i++)
        printf("%d ",L.elem[i]);
       
    return 0;
}
图片附件: 游客没有浏览图片的权限,请 登录注册

。。。。。。。。。。。
2013-11-02 08:22
快速回复:在顺序表中插入元素
数据加载中...
 
   



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

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