搜索结果
找到约 13,142 项符合
B-A 的查询结果
人工智能/神经网络 Description: FASBIR(Filtered Attribute Subspace based Bagging with Injected Randomness) is a variant
Description: FASBIR(Filtered Attribute Subspace based Bagging with Injected Randomness) is a variant of Bagging algorithm, whose purpose is to improve accuracy of local learners, such as kNN, through multi-model perturbing ensemble.
Reference: Z.-H. Zhou and Y. Yu. Ensembling local learners through ...
matlab例程 Description: S-ISOMAP is a manifold learning algorithm, which is a supervised variant of ISOMAP.
Description: S-ISOMAP is a manifold learning algorithm, which is a supervised variant of ISOMAP.
Reference: X. Geng, D.-C. Zhan, and Z.-H. Zhou. Supervised nonlinear dimensionality reduction for visualization and classification. IEEE Transactions on Systems, Man, and Cybernetics - Part B: Cyberneti ...
Linux/Unix编程 如果整数A的全部因子(包括1
如果整数A的全部因子(包括1,不包括A本身)之和等于B;且整数B的全部因子(包括1,不包括B本身)之和等于A,则将整数A和B称为亲密数。求3000以内的全部亲密数。
*题目分析与算法设计
按照亲密数定义,要判断数a是否有亲密数,只要计算出a的全部因子的累加和为b,再计算b的全部因子的累加和为n,若n等于a则可判定a和b是亲密数 ...
数据结构 排序算法、字典和B-树的C++语言实现 代码内容 包括以下算法: qui.c sort: quicksort qsort.c sort: qsort ins.c sort: insert
排序算法、字典和B-树的C++语言实现
代码内容 包括以下算法:
qui.c sort: quicksort
qsort.c sort: qsort
ins.c sort: insert sort
shl.c sort: shell sort
has.c dictionary: hash tables
bin.c dictionary: binary tree
rbt.c dictionary: red-black trees
skl.c dictionary: skip lists
ext.c external sort
b ...
其他 某幼儿园按如下方法依次给A
某幼儿园按如下方法依次给A,B,C,D,E五个小孩发糖果。将全部糖果的一半再加二分之一块糖果发给第一个小孩;将剩下糖果的三分之一再加三分之一块糖果发给第二个小孩;将剩下糖果的四分之一再加四分之一块糖果发给第三个小孩;将剩下糖果的五分之一再加五分之一块糖果发给第四个小孩;将最后剩下的11块糖果发给第五个小孩 ...
通讯编程文档 1.软件名称:通讯录V1.0试用版 2.作 者:赵 权 3.开发工具:Visual C++6.0 4.数 据 库: Access2000 5.说 明: a.本程序在Windows 20
1.软件名称:通讯录V1.0试用版
2.作 者:赵 权
3.开发工具:Visual C++6.0
4.数 据 库: Access2000
5.说 明:
a.本程序在Windows 2000 上调试通过。
b.在使用时先用ODBC注册数据源,数据源名:addresslist(名称不可以写错)
c.第一次运行时,密码为空。进入系统后可以修改密码。 ...
教育系统应用 学生作业管理系统 1、能够随时查询学生的各种成绩 2、能够计算出学生的综合成绩 3、设计报表打印出学生的综合成绩 4、能够输入各种实际数据 5、其他约定: a.缺勤超过两次考勤成绩为0
学生作业管理系统
1、能够随时查询学生的各种成绩
2、能够计算出学生的综合成绩
3、设计报表打印出学生的综合成绩
4、能够输入各种实际数据
5、其他约定:
a.缺勤超过两次考勤成绩为0,超过4次,该门课程取消考试资格
b.作业未交3次,取消考试资格
c.各种成绩比例:考勤:10%,作业10%,实验:10%,期末考试:70% ...
数据结构 The government of a small but important country has decided that the alphabet needs to be streamline
The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B ...
数学计算 【问题描述】已知线性方程组AX=B
【问题描述】已知线性方程组AX=B,求解该方程组。参考算法:
消去法:将列向量B加到矩阵A的最后一列,构成增广矩阵AB。对AB进行下列三种初等变换,使原矩阵A的部分的主对角线上的元素均为1,其余元素均为0,则原列向量B的部分即为X的值:
1. 将矩阵的一行乘以一个不为0的数
2. 将矩阵的一行加上另一行的倍数
3. 交换矩阵中 ...