数据结构课程实验

返回“数据结构”目录

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

07专升本实验

在 http://wzuacm.3322.org/ 上完成题目,并完成如下实验报告,并将实验报告发到 czk.data.structures@gmail.com - 数据结构实验1.doc - 数据结构实验2.doc - 数据结构实验3.doc - 数据结构实验4.doc - 数据结构实验5.doc - 数据结构实验6.doc - 数据结构实验7.doc - 数据结构实验8.doc

实验二程序模板

#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级实验