数据结构课程实验

返回“数据结构”目录

如果机房电脑速度太慢,参看温大机房优化脚本

07专升本实验

在线判题系统上完成题目,并完成如下实验报告,并将实验报告发到 czk.data.structures@gmail.com。

实验二程序模板

#include <stdio.h>
#include <string.h>
int main() {
    int n;
    char command[20];
    scanf("%d", &n);
    // read n numbers
    while(scanf("%s", command)!=EOF) {
        if(strcmp(command, "delete") == 0) {

        } else if(strcmp(command, "insert") == 0) {

        } else if(strcmp(command, "display") == 0) {

        } else if(strcmp(command, "length") == 0) {

        }
    }
}

04级实验