版本19和29间的区别 (跳过第10版)
于2007-09-21 14:14:51修订的的版本19
大小: 363
编辑: czk
备注:
于2008-02-23 15:35:08修订的的版本29
大小: 950
编辑: localhost
备注: converted to 1.6 markup
删除的内容标记成这样。 加入的内容标记成这样。
行号 1: 行号 1:
07专生本实验:
在 http://wzuacm.3322.org/ 上完成题目,并完成如下实验报告,并将实验报告发到czk.datastructure@gmail.com
[[AttachList]]
行号 5: 行号 2:
04级实验:
 * ["/熟悉开发环境"]
 * ["/顺序表"]
 * ["/链表"]
 * ["/栈"]
 * ["/队列"]
 * ["/稀疏矩阵"]
 * ["/二叉树"]
 * ["/图"]
 * ["/查找"]
 * ["/排序"]
如果机房电脑速度太慢参看[[温大机房优化脚本]]

== 07专升本实验 ==
在 http://wzuacm.3322.org/ 上完成题目,并完成如下实验报告,并将实验报告发到 czk.data.structures@gmail.com
<<AttachList>>

实验二程序模板
{{{#!cplusplus
#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级实验 ==

 * [[/熟悉开发环境]]
 * [[/顺序表]]
 * [[/链表]]
 * [[/栈]]
 * [[/队列]]
 * [[/稀疏矩阵]]
 * [[/二叉树]]
 * [[/图]]
 * [[/查找]]
 * [[/排序]]

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

07专升本实验

http://wzuacm.3322.org/ 上完成题目,并完成如下实验报告,并将实验报告发到 czk.data.structures@gmail.com

  • [下载 | 查看] (2018-11-13 20:07:50, 111.5 KB) [[attachment:数据结构实验1.doc]]
  • [下载 | 查看] (2018-11-13 20:07:50, 112.5 KB) [[attachment:数据结构实验2.doc]]
  • [下载 | 查看] (2018-11-13 20:07:49, 112.5 KB) [[attachment:数据结构实验3.doc]]
  • [下载 | 查看] (2018-11-13 20:07:49, 112.5 KB) [[attachment:数据结构实验4.doc]]
  • [下载 | 查看] (2018-11-13 20:07:49, 112.5 KB) [[attachment:数据结构实验5.doc]]
  • [下载 | 查看] (2018-11-13 20:07:50, 113.0 KB) [[attachment:数据结构实验6.doc]]
  • [下载 | 查看] (2018-11-13 20:07:50, 113.0 KB) [[attachment:数据结构实验7.doc]]
  • [下载 | 查看] (2018-11-13 20:07:49, 113.0 KB) [[attachment:数据结构实验8.doc]]
 All files | Selected Files: delete move to page copy to page

实验二程序模板

   1 #include <stdio.h>
   2 #include <string.h>
   3 int main() {
   4     int n;
   5     char command[20];
   6     scanf("%d", &n);
   7     // read n numbers
   8     while(scanf("%s", command)!=EOF) {
   9         if(strcmp(command, "delete") == 0) {
  10             
  11         } else if(strcmp(command, "insert") == 0) {
  12             
  13         } else if(strcmp(command, "display") == 0) {
  14             
  15         } else if(strcmp(command, "length") == 0) {
  16             
  17         }
  18     }
  19 }

04级实验

数据结构课程实验 (2008-02-23 15:35:08由localhost编辑)

ch3n2k.com | Copyright (c) 2004-2020 czk.