- 博客(43)
- 问答 (1)
- 收藏
- 关注
原创 PAT(Advanced Level) Practice(with python)——1066 Root of AVL Tree
【代码】PAT(Advanced Level) Practice(with python)——1066 Root of AVL Tree。
2023-09-14 20:17:50 168
原创 PAT(Advanced Level) Practice(with python)——1118 Birds in Forest
【代码】PAT(Advanced Level) Practice(with python)——1118 Birds in Forest。
2023-09-12 20:21:12 167
原创 PAT(Advanced Level) Practice(with python)——1067 Sort with Swap(0, i)
【代码】PAT(Advanced Level) Practice(with python)——1067 Sort with Swap(0, i)
2023-08-22 11:53:58 204
原创 PAT(Advanced Level) Practice(with python)——1058 A+B in Hogwarts
【代码】PAT(Advanced Level) Practice(with python)——1058 A+B in Hogwarts。
2023-08-12 10:40:46 244
原创 PAT(Advanced Level) Practice(with python)——1023 Have Fun with Numbers
【代码】PAT(Advanced Level) Practice(with python)——1023 Have Fun with Numbers。
2023-08-09 20:27:41 465
原创 PAT(Advanced Level) Practice(with python)——1013 Battle Over Cities(最后一个样例无能为了,输入太多了python真救不了)
【代码】PAT(Advanced Level) Practice(with python)——1013 Battle Over Cities(最后一个样例无能为了,输入太多了python真救不了)
2023-08-08 20:18:49 77
原创 PAT(Advanced Level) Practice(with python)——1093 Count PAT‘s
【代码】PAT(Advanced Level) Practice(with python)——1093 Count PAT's。
2023-07-31 16:11:57 78
原创 PAT(Advanced Level) Practice(with python)——1053 Path of Equal Weight (最后一个测试不通过,求解)
【代码】PAT(Advanced Level) Practice(with python)——1053 Path of Equal Weight (最后一个测试不通过,求解)
2023-07-31 10:50:17 64
原创 PAT(Advanced Level) Practice(with python)——1004 Counting Leaves
【代码】PAT(Advanced Level) Practice(with python)——1004 Counting Leaves。
2023-07-30 16:24:54 56
原创 PAT(Advanced Level) Practice(with python)——1094 The Largest Generation
【代码】PAT(Advanced Level) Practice(with python)——1094 The Largest Generation。
2023-07-30 15:49:57 55
原创 PAT(Advanced Level) Practice(with python)——1031 Hello World for U
【代码】PAT(Advanced Level) Practice(with python)——1031 Hello World for U。
2023-07-30 15:23:13 57
原创 PAT(Advanced Level) Practice(with python)——1009 Product of Polynomials
【代码】PAT(Advanced Level) Practice(with python)——1009 Product of Polynomials。
2023-07-27 10:49:05 66
原创 PAT(Advanced Level) Practice(with python)——1011 World Cup Betting
【代码】PAT(Advanced Level) Practice(with python)——1011 World Cup Betting。
2023-07-24 17:26:04 99
原创 PAT(Advanced Level) Practice(with python)——1008 Elevator
【代码】PAT(Advanced Level) Practice(with python)——1008 Elevator。
2023-07-24 15:41:23 52
原创 PAT(Advanced Level) Practice(with python)——1006 Sign In and Sign Out
【代码】PAT(Advanced Level) Practice(with python)——1006 Sign In and Sign Out。
2023-07-22 13:59:30 52
原创 PAT(Advanced Level) Practice(with python)——1005 Spell It Right
【代码】PAT(Advanced Level) Practice(with python)——1005 Spell It Right。
2023-07-22 13:41:04 65
原创 PAT(Advanced Level) Practice(with python)——1003 Emergency
【代码】PAT(Advanced Level) Practice(with python)——1003 Emergency。
2023-07-22 11:36:04 67
原创 PAT(Advanced Level) Practice(with python)——1002 A+B for Polynomials
【代码】PAT(Advanced Level) Practice(with python)——1002 A+B for Polynomials。
2023-07-22 10:12:13 73
原创 PAT(Advanced Level) Practice(with python)——1001 A+B Format
【代码】PAT(Advanced Level) Practice(with python)——1001 A+B Format。
2023-07-22 10:10:01 72
原创 PageRank算法实现:python版
PageRank算法的基本想法是在有向图上定义一个随机游走模型,即一阶马尔可夫链,描述随机游走者沿着有向图随机访问各个结点的行为。在一定条件下,极限情况访问每个结点的概率收敛到平稳分布,这时各个结点的平稳概率值就是其PageRank值,表示结点的重要度。PageRank 是递归定义的,PageRank 的计算可以通过迭代算法进行。如图所示入链数:指向该节点的链接数出链数:由该节点指出的链接数。
2023-03-28 11:21:25 600
原创 CODE组合差分进化算法(python实现)
差分进化算法(Differential Evolution,DE)由Storn和Price于1995年首次提出。主要用于求解实数优化问题。该算法是一类基于群体的自适应全局优化算法,属于演化算法的一种,由于其具有结构简单、容易实现、收敛快速、鲁棒性强等特点,因而被广泛应用在数据挖掘、模式识别、数字滤波器设计、人工神经网络、电磁学等各个领域。1996年在日本名古屋举行的第一届国际演化计算(ICEO)竞赛中,差分进化算法被证明是速度最快的进化算法。
2022-11-13 19:41:10 1249 1
原创 KNN(k_nearest_neighbors)python实现
K-最近邻法(KNN)最初由Cover和Hart于1968年提出,是一个在理论上比较成熟的分类算法。KNN是一类可用于分类或回归的技术。作为一个非参数学习算法,K-最近邻并不局限于固定数目的参数。我们通常认为K-最近邻算法没有任何参数,而且使用训练数据的简单函数。事实上,它甚至也没有一个真正的训练阶段或学习过程。反之,在测试阶段我们希望在新的测试输入x上产生y,我们需要在训练数据X上找到x的K-最近邻。然后我们返回训练集上对应的y值的平均值。这几乎适用于任何类型可以确定y值平均值的监督学习。
2022-11-07 12:23:54 576
原创 P1048 [NOIP2005 普及组] 采药 题解
辰辰是个天资聪颖的孩子,他的梦想是成为世界上最伟大的医师。为此,他想拜附近最有威望的医师为师。医师为了判断他的资质,给他出了一个难题。医师把他带到一个到处都是草药的山洞里对他说“孩子,这个山洞里有一些不同的草药,采每一株都需要一些时间,每一株也有它自身的价值。我会给你一段时间,在这段时间里,你可以采到一些草药。如果你是一个聪明的孩子,你应该可以让采到的草药的总价值最大。”如果你是辰辰,你能完成这个任务吗?...
2022-07-22 22:41:29 355
原创 P1044 [NOIP2003 普及组] 栈 题解
dp[i,j]=dp[i-1,j]+dp[i,j-1]意思是输出序列中有i个数,j个出栈的可能数也就等于输出序列中有i-1个数,j个出栈的可能数加上输出序列中有i-1个数,j个出栈的可能数。定义dp[0,j]=1,意思是输出序列中的数为0,只有出栈的可能为1种,不难想到,从栈中取出,无论多少个,结果都只有一种可能。dp[i,j]当i=j时,说明栈空了,此时dp[i,j]=dp[i-1,j]dp[i,j]表示i个输出序列中的数,j个出栈的所有可能数。NOIP2003普及组第三题。...
2022-07-20 21:57:01 246
转载 Unity插件——Pico一体机之 VRTK插件
说明:在PICO内想使用VRTK插件功能,最终在PICO社区找个了一个修改后的插件.GitHub下载地址在文末.下文为 插件配置说明.亲测可用,请严格遵循流程顺序使用.Unity版本Unity2019.4.36描述在PICO内实现部分VRTK功能。该项目演示了如何将VRTK场景与Pico VR SDK集成在一起。在Assets-VRTK-Examples中已使用Pico SDK v2.8.5配置了七个场景,以供参考。使用说明1.导入Pico SDK并应用推荐的设置。这还会将构建目标设置为And
2022-03-25 18:37:04 1224
转载 Azure Kinect DK入门
Azure Kinect DK 文档Azure Kinect 传感器 SDK 下载地址版本可自行选择。安装时请留意安装地址,配置VS环境时要用到。
2021-09-18 20:11:53 273
原创 子串分值和(python)
问题描述对于一个字符串 ,我们定义 的分值 为 中出现的不同的字符个数。例如f( “aba”)=2,f(“abc”)=3, f(“aaa”)=1。现在给定一个字符串 (长度为 ),请你计算对于所有 的非空子串 ,的和是多少。输入格式输入一行包含一个由小写字母组成的字符串 。输出格式输出一个整数表示答案。样例输入ababc样例输出28样例说明子串 f值a 1ab 2aba 2abab 2ababc 3 b 1 ba 2 bab
2021-04-08 19:07:41 754 1
原创 单链表(python)
说明:只是因为每次自己都要重写链表很麻烦,所以把写好的代码保存起来,方便以后使用。(简称偷懒)class LNode(object): "单链表的结点" def __init__(self, elem, next_=None): self.elem = elem self.next = next_class LinkedListUnderflow(ValueError): """异常""" print("ERROR")class LL
2021-03-29 20:28:25 105 1
原创 KMP通俗易懂(python)
~~ 今天学了KMP算法,课上怎么也想不通,就花了一个晚自习去单步代码,最后终于明白了,下面我来分享一下我的总结,若有什么问题,欢迎各位大佬指正!我按照我的思路叙述:首先我们来看下这个字符串mum_str = 'abcdabcd',规定它有一个这样的列表 mum_list[-1, 0, 0, 0, 0, 1, 2, 3]这个list 怎么来的呢?首先把这个字符串最后一个字符拿出来提到最前面,变成了mum_str = 'dabcdabc',再来一个有len(mum_str)个元素的列表,第一个元素固定为
2021-03-26 00:08:44 125 5
3D打印步骤介绍(含截图)超级详细JGcreat
2023-07-28
为什么我运行Azure Kinect人体追踪第一个程序报错?
2021-07-18
TA创建的收藏夹 TA关注的收藏夹
TA关注的人