上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: #include<iostream> using namespace std; // 使用数组实现的并查集算法 int *equivClass;// 等价类数组 int n;//元素个数 void initialize(int numberOfElements) { // 用每个类的一个元素,初始化 阅读全文
posted @ 2022-06-02 11:02 里列昂遗失的记事本 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 箱排序 假定用一个链表保存一个班级学生清单。结点的数据有:学生姓名和考试分数。假设分数是0~100的整数。 采用箱排序可以把分数相同的结点放在同一个箱子里,然后把箱子连接起来就得到了有序的链表 链表定义 #include<iostream> #include <sstream> using name 阅读全文
posted @ 2022-06-01 21:24 里列昂遗失的记事本 阅读(32) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include <sstream> using namespace std; class illegalParameterValue { public: illegalParameterValue() : message("Illegal parameter 阅读全文
posted @ 2022-05-28 22:35 里列昂遗失的记事本 阅读(34) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<vector> #include<sstream> using namespace std; class illegalParameterValue { public: illegalParameterValue() : message("Il 阅读全文
posted @ 2022-05-28 18:58 里列昂遗失的记事本 阅读(25) 评论(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 里列昂遗失的记事本 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 一元多项式的乘法与加法运算 设计函数分别求两个一元多项式的乘积与和 输入格式 输入分2行,每行分别先给出多项式非零项的个数,再以指数递降方式输入一个多项式非零项系数和指数(绝对值均为不超过1000的整数)。数字间以空格分隔。 输出格式 输出分2行,分别以指数递降方式输出乘积多项式以及和多项式非零项的 阅读全文
posted @ 2022-05-18 20:23 里列昂遗失的记事本 阅读(121) 评论(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 里列昂遗失的记事本 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 数据集地址:https://www.kaggle.com/datasets/shaunthesheep/microsoft-catsvsdogs-dataset ```python from shutil import copyfile import random import torch.nn a 阅读全文
posted @ 2022-05-18 18:34 里列昂遗失的记事本 阅读(810) 评论(0) 推荐(0) 编辑
摘要: 二叉搜索树的操作集 本题要求实现给定二叉搜索树的5种常用操作 函数接口定义 BinTree Insert( BinTree BST, ElementType X ); BinTree Delete( BinTree BST, ElementType X ); Position Find( BinTr 阅读全文
posted @ 2022-04-22 20:51 里列昂遗失的记事本 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 先序输出叶结点 本题要求按照先序遍历顺序输出给定二叉树的叶节点 函数接口定义 void PreorderPrintLeaves( BinTree BT ); 其中BinTree结构定义如下: typedef struct TNode *Position; typedef Position BinTr 阅读全文
posted @ 2022-04-22 20:18 里列昂遗失的记事本 阅读(49) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 18 下一页