上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
摘要: 递归 递归就是函数自己调用自己,而且有结束条件 代码实现 """ 递归 """ def func1(x): """不是递归,没有结束条件""" print(f"x:{x}") func1(x - 1) def func2(x): """不是递归,x一直+一直符合条件,永远不能结束""" if x > 阅读全文
posted @ 2022-12-01 23:50 JaxonYe 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 相关资料 清华大学博士讲解Python数据结构与算法(完整版)全套100节 https://www.bilibili.com/video/BV1uA411N7c5?p=1&vd_source=3f409e335d99edd58fc22f4c59f6ae9e 算法可视化网站 https://visua 阅读全文
posted @ 2022-12-01 23:01 JaxonYe 阅读(22) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-11-28 10:11 JaxonYe 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 目录1、常用命令1.1、查看安装的Anaconda版本1.2、查看已安装的科学包1.3、查看所有的conda虚拟环境1.4、查看conda配置1.5、更新的相关操作2、激活、退出默认base的conda环境3、创建自己的虚拟环境3.1、创建虚拟环境3.2、激活、退出自己定义的conda环境3.4 c 阅读全文
posted @ 2022-11-24 22:38 JaxonYe 阅读(1036) 评论(0) 推荐(0) 编辑
摘要: 相关文章 https://blog.csdn.net/qq_36667170/article/details/121716527 https://blog.csdn.net/DENGSHUCHAO152/article/details/123250943 1、基本条件 (1)要知道服务器的主机号、端 阅读全文
posted @ 2022-11-24 20:50 JaxonYe 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 参考资料 https://www.bilibili.com/video/BV15Z4y1p7KR/?spm_id_from=333.337.search-card.all.click&vd_source=3f409e335d99edd58fc22f4c59f6ae9e 代码实现 import ran 阅读全文
posted @ 2022-11-20 21:33 JaxonYe 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 参考资料 https://www.bilibili.com/video/BV1pf4y1o7RA/?spm_id_from=333.337.search-card.all.click&vd_source=3f409e335d99edd58fc22f4c59f6ae9e 代码实现 """快速排序pyt 阅读全文
posted @ 2022-11-20 18:30 JaxonYe 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 相关资料 https://iq.opengenus.org/rope-data-structure/ https://github.com/marshallward/ropes 阅读全文
posted @ 2022-11-14 09:29 JaxonYe 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 《高级数据结构与算法设计》-第一章-导言 算法 @Author : ChangXin Ye @Date : 2022年11月 @Description:《高级数据结构与算法设计》课程第一章笔记 @Version: v1.0 1、算法的概念 1.1 算法的定义 ​ 算法是一系列解决问题的明确指令,也就 阅读全文
posted @ 2022-11-12 17:06 JaxonYe 阅读(29) 评论(0) 推荐(0) 编辑
摘要: ubuntu18.04安装无线网卡驱动 1、sudo apt-get update 2、sudo apt install broadcom-sta-dkms 3、sudo apt --fix-broken install(提示有未能满足的依赖关系执行下面命令) 4、成功安装wifi驱动,重启下电脑, 阅读全文
posted @ 2022-11-08 22:44 JaxonYe 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页