上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: 对角矩阵类(部分方法C++) 代码 #include<iostream> using namespace std; template<class T> class diagonalMatrix { public: explicit diagonalMatrix(int theN = 10); ~di 阅读全文
posted @ 2022-06-05 20:49 里列昂遗失的记事本 阅读(64) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; template<class T> class matrix { public: matrix(int theRows = 0, int theColumns = 0); matrix(const matrix<T> & 阅读全文
posted @ 2022-06-03 21:55 里列昂遗失的记事本 阅读(454) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; int main() { int numberOfRows = 5; // 定义每一行的长度 int length[5] = {6, 3, 4, 2, 7}; // 声明一个二维数组变量 // 分配所需要的行 int * 阅读全文
posted @ 2022-06-02 11:09 里列昂遗失的记事本 阅读(84) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; // 使用数组实现的并查集算法 int *equivClass;// 等价类数组 int n;//元素个数 void initialize(int numberOfElements) { // 用每个类的一个元素,初始化 阅读全文
posted @ 2022-06-02 11:02 里列昂遗失的记事本 阅读(133) 评论(0) 推荐(0)
摘要: 箱排序 假定用一个链表保存一个班级学生清单。结点的数据有:学生姓名和考试分数。假设分数是0~100的整数。 采用箱排序可以把分数相同的结点放在同一个箱子里,然后把箱子连接起来就得到了有序的链表 链表定义 #include<iostream> #include <sstream> using name 阅读全文
posted @ 2022-06-01 21:24 里列昂遗失的记事本 阅读(43) 评论(0) 推荐(0)
摘要: #include<iostream> #include <sstream> using namespace std; class illegalParameterValue { public: illegalParameterValue() : message("Illegal parameter 阅读全文
posted @ 2022-05-28 22:35 里列昂遗失的记事本 阅读(46) 评论(0) 推荐(0)
摘要: #include<iostream> #include<vector> #include<sstream> using namespace std; class illegalParameterValue { public: illegalParameterValue() : message("Il 阅读全文
posted @ 2022-05-28 18:58 里列昂遗失的记事本 阅读(32) 评论(0) 推荐(0)
摘要: #include<iostream> #include <sstream> #include<iterator> #include<algorithm> using namespace std; // 重写copy代码 template<class iterator> void copy(itera 阅读全文
posted @ 2022-05-26 20:44 里列昂遗失的记事本 阅读(74) 评论(0) 推荐(0)
摘要: 一元多项式的乘法与加法运算 设计函数分别求两个一元多项式的乘积与和 输入格式 输入分2行,每行分别先给出多项式非零项的个数,再以指数递降方式输入一个多项式非零项系数和指数(绝对值均为不超过1000的整数)。数字间以空格分隔。 输出格式 输出分2行,分别以指数递降方式输出乘积多项式以及和多项式非零项的 阅读全文
posted @ 2022-05-18 20:23 里列昂遗失的记事本 阅读(142) 评论(0) 推荐(0)
摘要: import random import os import tensorflow as tf from tensorflow import keras from shutil import copyfile from tensorflow.keras import layers from tens 阅读全文
posted @ 2022-05-18 19:33 里列昂遗失的记事本 阅读(389) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 18 下一页