鱼C论坛

 找回密码
 立即注册
查看: 3512|回复: 2

恳请各位老师帮小弟解决

[复制链接]
发表于 2021-6-16 22:25:39 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include <stdio.h>
#include <stdlib.h>
#define MAXSIZE 5
typedef int ElemType;
typedef struct{
    ElemType *elem;
    int length;
}SqList;
void InitList(SqList &L);[b]/*您需要编写的代码*/
int ListDelete(SqList &L,int i);
int main()
{
    SqList L;
    InitList(L);
    int i;
    scanf("%d",&i);
    int result=ListDelete(L,i);
    if(result==0){
        printf("Delete Error.The value of i is illegal!");   
    }else if(result==1){
        printf("Delete Success.The elements of the SequenceList L are:");   
        for(int j=0;j<L.length;j++){
            printf(" %d",L.elem[j]);
        }
    }
    return 0;
}
int ListDelete(SqList &L,int i){
        int j;

        if(i > L.length || i < 1)
                return 0;

        for(j = i-1;j < L.length ;j++){
                L.elem[j] = L.elem[j+1];
        }

        L.length--;
        return 1;
}
/* 请在这里填写答案 */

评分

参与人数 1鱼币 -1 收起 理由
人造人 -1 请勿重复发帖

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-16 23:12:09 | 显示全部楼层
数据结构链表??
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-6-17 07:29:34 | 显示全部楼层
Gacy 发表于 2021-6-16 23:12
数据结构链表??

是呀
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-8 05:27

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表