摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 #define LH 1 //左子树高 4 #define EH 0 //左右子树一样高 5 #define RH -1 //右子树高 6 #define max 20 //最多可输入的结点数 7 typedef 阅读全文
摘要:
1 #include"iostream" 2 #include<stdio.h> 3 #include<stdlib.h> 4 #include <ctime> 5 using namespace std; 6 7 clock_t start; 8 clock_t End; 9 10 void in 阅读全文
摘要:
1 #include<stdio.h> 2 #include "iostream" 3 #include "stdlib.h" 4 5 #define MAXVERTEX 20 6 7 typedef struct { 8 char vexs[MAXVERTEX];//顶点向量 9 int arcs 阅读全文
摘要:
1.观察数据集: 在weka中打开测试集votetest.arff,观察到数据集共有435个实例,每个实例是一个国会议员的投票信息以及派别,共有17个二元属性,其中一个为类别属性。并且该数据集带有一定的缺失值。国会议员通常按照其党政路线进行投票,本实验通过对议员投票情况(16个属性)对其类别属性进行 阅读全文
摘要:
1 #include <stdio.h> 2 /** 3 @author tz 4 @date 2019-04-11 5 */ 6 void finishTask1(FILE* fptr); 7 void finishTask2(FILE* fptr); 8 void finishTask3(FIL 阅读全文
摘要:
任务:将一个.c文件1复制到另一个文件2中,要求过滤掉文件1中的注释。 注释类型:以//开头或者/**/中的注释。用一个函数完成该功能。 基本要求:假设//或者/**/不会出现在printf语句中。 1 #include <stdio.h> 2 /** 3 @author tz 4 @date 20 阅读全文
摘要:
练习目的:随机存取文件的建立、读取、记录删除和更新操作。 问题描述:有一家商店,为了查看店里有些什么商品、数量有多少以及每件商品的价格如何,需要编制一份商品目录。每种商品都包括4种属性:商品ID、商品名、数量与价格。商品ID为0—99之间的整数,每种商品的ID号互不相同,所以这里默认只有100种商品 阅读全文
摘要:
1.任务: 制定外卖订单接收和餐食快递的调度策略.有一笔启动资金,可以招募外卖骑手送餐,来赚取快递费.但本区域的订单都有义务接收,不能拒绝,若拒单政府就会吊销你的营业执照;但如果接收多个订单后,因为骑手来不及送,导致某个订单超时未送达,客户会投诉,你会被罚款. 2.模块设计: 3.结构体定义: A. 阅读全文
摘要:
1 #include<stdio.h> 2 #include<math.h> 3 #include<stdlib.h> 4 5 typedef struct stack1 { 6 char data[20]; 7 int top; 8 } StackChars; 9 10 typedef struc 阅读全文
摘要:
1 #include<stdio.h> 2 #include<stdlib.h> 3 struct Demo 4 { 5 int num; 6 struct Demo * nextList; 7 }; 8 typedef struct Demo LIT; 9 LIT* creatList(void) 阅读全文