363
备注:
|
1400
|
删除的内容标记成这样。 | 加入的内容标记成这样。 |
行号 1: | 行号 1: |
07专生本实验: 在 http://wzuacm.3322.org/ 上完成题目,并完成如下实验报告,并将实验报告发到[email protected] |
== 07专升本实验 == 在 http://wzuacm.3322.org/ 上完成题目,并完成如下实验报告,并将实验报告发到 czk.data.structures@gmail.com |
行号 5: | 行号 5: |
04级实验: | 实验二程序模板 {{{#!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) { } } } }}} === 机房优化脚本 === 将以下代码粘贴到命令行运行可以加快机器运行速度: {{{ net stop mssqlserver net stop sqlbrowser net stop mssql$sqlexpress net stop msftpsvc net stop w3svc net stop smtpsvc net stop iisadmin net stop remoteregistry net stop spooler net stop messenger net stop wuauserv net stop browser net stop lanmanserver net stop bits net stop lanmanworkstation net stop schedule net stop trkwks net stop lmhosts net stop mdm net stop policyagent }}} == 04级实验 == |
07专升本实验
在 http://wzuacm.3322.org/ 上完成题目,并完成如下实验报告,并将实验报告发到 [email protected] AttachList
实验二程序模板
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 }
1. 机房优化脚本
将以下代码粘贴到命令行运行可以加快机器运行速度:
net stop mssqlserver net stop sqlbrowser net stop mssql$sqlexpress net stop msftpsvc net stop w3svc net stop smtpsvc net stop iisadmin net stop remoteregistry net stop spooler net stop messenger net stop wuauserv net stop browser net stop lanmanserver net stop bits net stop lanmanworkstation net stop schedule net stop trkwks net stop lmhosts net stop mdm net stop policyagent
04级实验
- ["/熟悉开发环境"]
- ["/顺序表"]
- ["/链表"]
- ["/栈"]
- ["/队列"]
- ["/稀疏矩阵"]
- ["/二叉树"]
- ["/图"]
- ["/查找"]
- ["/排序"]