该文被密码保护。 阅读全文
posted @ 2022-07-01 14:05 JaxonYe 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 前言 使用gittee仓库+svn管理代码-版本控制主要是为了方便多台电脑代码同步,且把代码备份在云端有利于代码安全。因为真不知道电脑什么时候坏了就糟糕了。 1.在gittee创建仓库 gittee官网 https://gitee.com/ 点击新建仓库 填写信息,仓库是私有还是开源都是开源的,这个 阅读全文
posted @ 2022-06-28 21:30 JaxonYe 阅读(547) 评论(0) 推荐(0) 编辑
摘要: 记录下笔记本和组装的主机各种性能 目录跑分对比1、笔记本1.1 CPU_Z1.2 鲁大师1.3 鲁大师2023.1.152、组装的主机2.1 CPU_Z2.2 鲁大师2.3 2022年10月31日更新——换了RTX2060 12G显卡2.4 2022年12月28日更新——系统盘换980 pro3、固态读写对比3.1 致钛5000pl 阅读全文
posted @ 2022-06-27 19:01 JaxonYe 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 一、报错问题提示 代码可以正常运行,但不能调试,同目录下的其它文件也不能调试 AttributeError: 'Queue' object has no attribute 'put' Can't process net command: 501 1 0.1 WIN 二、原因分析 结合网上的说法和实 阅读全文
posted @ 2022-06-20 10:08 JaxonYe 阅读(605) 评论(0) 推荐(0) 编辑
摘要: 数据结构之——栈、队列-python代码实现 1、栈 1.1 原理 太简单,略 1.2 python实现栈 """python 列表实现栈""" class Stack(object): def __init__(self): self.stack_list = [] """入栈 压入栈底 即把新的 阅读全文
posted @ 2022-06-19 21:36 JaxonYe 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 图的遍历-深度优先遍历和广度优先遍历-python实现 1、深度优先遍历 1.1 原理 暂时先不写,要画图很麻烦 1.2 python实现深度优先遍历 注:调用的栈类在这个文章:https://www.cnblogs.com/yechangxin/articles/16391518.html # e 阅读全文
posted @ 2022-06-19 11:47 JaxonYe 阅读(683) 评论(0) 推荐(0) 编辑
摘要: 来源:https://blog.csdn.net/z132533/article/details/104525520 阅读全文
posted @ 2022-06-15 16:37 JaxonYe 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 现象:举个例子 Webstorm运行html时,Chrome浏览器显示出现乱码,如图所示: <html> <head> <title>网页的标题yes</title> </head> <body> 网页的主体内容 </body> </html> 解决方法: 代码前面加上一行<meta http-eq 阅读全文
posted @ 2022-06-04 20:24 JaxonYe 阅读(447) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-05-28 17:28 JaxonYe 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-05-28 11:59 JaxonYe 阅读(0) 评论(0) 推荐(0) 编辑