devbox
笔触狂放9
这个屌丝很懒,什么也没留下!
当前位置:   article > 正文

数据结构实验-学生信息表_数据结构学生信息表

数据结构学生信息表

(实验)自定义数据元素的类型和存储结构(顺序表或链表均可),完成如下的功能:
①录入:从键盘输入学生信息表的各个数据元素(至少包含学号,姓名,年龄,语文成绩,数学成绩,英语成绩);
②查找:可按学号查找后输出学生的完整信息。
③插入:在表中第i个元素前插入新的学生信息;
④删除:按照学号删除指定学生信息。
⑤输出:输出所有学生信息;

#include <iostream>
using namespace std;
//学生信息结构体
struct Student {
    int id;                 //序列
    long studentid;        //学号
    string name;      //姓名
    int age;        //年龄
    int Score[3];   //成绩
};

//单链表的存储结构
typedef struct LNode {
    Student data;           //节点的数据项
    struct LNode* next;     //节点的指针域
}LNode,*LinkList;           //LinkList为指向结构体LNode的指针类型

//单链表的初始化
LinkList InitList(LinkList &L) {
    L = new LNode;          //生成头结点
    L->next = NULL;         //头结点的指针域置为空
    return L;
}

//单链表的创建
int CreatList(LinkList& L, int n) {
    L->next = NULL;
    int a = 0;
    char s = 'y';
    while (s != 'n')
    {
        LNode* p = new LNode;
        p->data.id = ++n;
        a = n;
        cout << "序列:" << n<< endl;
        cout << "学号:" << endl;
        cin >> p->data.studentid;
        cout << "姓名:" << endl;
        cin >> p->data.name;
        cout << "年龄:" << endl;
        cin >> p->data.age;
        cout << "语文:" << endl;
        cin >> p->data.Score[0];
        cout << "数学:" << endl;
        cin >> p->data.Score[1];
        cout << "英语:" << endl;
        cin >> p->data.Score[2];
        p->next = L->next;
        L->next = p;
        cout << "是否要继续添加  y或n"<<endl;
        cin >> s;
    }
    return a;
}


//取链表中的所有值
LNode* GetStudent(LinkList L, int i) {
    LinkList p = L;
    int j = 0;
    while (p&&j<=i)
    {
        p = p->next;
        ++j;
    }
    return p;
}

//根据学号查找
LNode* queryById(LinkList L,long studentid) {
    LinkList p = L->next;
    while (p&&p->data.studentid!=studentid)
    {
        p = p->next;
    }
    if (!p)
    {
        cout << "查无此人!";
        p = NULL;
    }
    return p;
}

//插入新的学生信息
bool addStudent(LinkList& L, int i, Student e) {
    LinkList p = L;
    int j = 0;
    while (p&&(j<i-1))
    {
        p = p->next;
        ++j;
    }
    if (!p||i<=0)
    {
        cout << "插入失败!";
        return false;
    }
    LNode* s = new LNode;
    s->data = e;
    s->next = p->next;
    p->next = s;
    return true;
}

//删除第i个学生信息
bool DeleteStudent(LinkList& L, long deleteId) {
    LNode* p = GetStudent(L, queryById(L, deleteId)->data.id -1);

    LNode* q = new LNode;
    q = p->next;
    p->next = q->next;
    delete q;
    return true;
}

int main() {
    
    //新建
    LinkList L;
    L = InitList(L);
    int num = 0;
    //cout << "请输入要录入的学生人数:"<< endl;
    //cin >> num;
    num = CreatList(L, num);
    cout<< num;
    
    //输出
    cout << "输出所有学生" << endl;
    for (int i = 0; i < num; i++)
    {
        Student q = GetStudent(L, i)->data;
        cout << "学号:" << q.studentid << endl;
        cout << "年龄:" << q.age << endl;
        cout << "姓名:" << q.name << endl;
        cout << "语文:" << q.Score[0] << endl;
        cout << "数学:" << q.Score[1] << endl;
        cout << "英语:" << q.Score[2] << endl;
    }

    //查找
    cout << "按学号查找学生的完整信息" << endl;
    cout << "请输入学号" << endl;
    int studentid;
    cin >> studentid;
    Student s = queryById(L, studentid)->data;
    cout << "学号:"<< s.studentid << endl;
    cout << "年龄:"<< s.age << endl;
    cout << "姓名:"<< s.name << endl;
    cout << "语文:"<< s.Score[0] << endl;
    cout << "数学:"<< s.Score[1] << endl;
    cout << "英语:"<< s.Score[2] << endl;

    //插入
    cout << "在表中第i个元素前插入新的学生信息" << endl;
    cout << "请输入要插入的学生信息" << endl;
    Student s1;

    s1.id = ++num;
    cout << "序列:" << s1.id << endl;
    cout << "学号:" << endl;
    cin >> s1.studentid;
    cout << "姓名:" << endl;
    cin >> s1.name;
    cout << "年龄:" << endl;
    cin >> s1.age;
    cout << "语文:" << endl;
    cin >> s1.Score[0];
    cout << "数学:" << endl;
    cin >> s1.Score[1];
    cout << "英语:" << endl;
    cin >> s1.Score[2];

    bool add = false;
    int n;
    while (add == false)
    {
        cout << "请输入要在第几个插入" << endl;
        cin >> n;
        add = addStudent(L, n, s1);
        if (add == false)
        {
            cout << "插入失败!请重新在表中第i个元素前插入新的学生信息" << endl;
        }
    }
    cout << "插入成功!" << endl;


    //输出
    cout << "输出所有学生" << endl;
    for (int i = 0; i < num; i++)
    {
        Student q = GetStudent(L, i)->data;
        cout << "学号:" << q.studentid << endl;
        cout << "年龄:" << q.age << endl;
        cout << "姓名:" << q.name << endl;
        cout << "语文:" << q.Score[0] << endl;
        cout << "数学:" << q.Score[1] << endl;
        cout << "英语:" << q.Score[2] << endl;
    }

    //删除
    long deleteId;
    bool del = false;
    while (del == false)
    {
        cout << "请输入要删除的学生的学号" << endl;
        cin >> deleteId;
        del = DeleteStudent(L, deleteId);
        if (add == false)
        {
            cout << "删除失败!请重新输入要删除的学生的学号" << endl;
        }
    }
    cout << "删除成功!" << endl;
    num--;

    //输出
    cout << "输出所有学生"<< endl;
    for (int i = 0; i < num; i++)
    {
        Student q = GetStudent(L, i)->data;
        cout << "学号:" << q.studentid << endl;
        cout << "年龄:" << q.age << endl;
        cout << "姓名:" << q.name << endl;
        cout << "语文:" << q.Score[0] << endl;
        cout << "数学:" << q.Score[1] << endl;
        cout << "英语:" << q.Score[2] << endl;
    }
    return 1;
}
  • 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
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/703502
推荐阅读
相关标签
  

闽ICP备14008679号