摘要: 文章目录 algorithm_算法分析引入的记号:复杂度分析符号 T ( n ) : T(n): T(n):算法的运行时间 f ( n ) f(n) f(n):输入规模和关于输入规模的函数( Θ , O , Ω \Theta,O,\Omega Θ,O,Ω):常用的三种记号:关系小结 Θ(渐进紧确界) 阅读全文
posted @ 2021-06-15 11:44 xuchaoxin1375 阅读(47) 评论(0) 推荐(0)
摘要: 文章目录 微存储器指令编制:内存填数: 微存储器指令编制: 内存填数: 以对01H循环乘5为例: 01H->05H->19H->… 阅读全文
posted @ 2021-06-08 16:19 xuchaoxin1375 阅读(16) 评论(0) 推荐(0)
摘要: 文章目录 refs字体修改@change font to display in editor主题颜色配置不可用问题solution: refs Documentation (sublimetext.com)Font Settings (sublimetext.com)Color Schemes (s 阅读全文
posted @ 2021-06-04 20:51 xuchaoxin1375 阅读(26) 评论(0) 推荐(0)
摘要: 文章目录 撤销文件跟踪:及时添加该文件到.gitignore中将变化add并且commit操做流程实例: 撤销文件跟踪: git rm -r --cached <dir/file> 及时添加该文件到.gitignore中 可以查阅相关规则: 将变化add并且commit 然后将结果push到gith 阅读全文
posted @ 2021-06-04 09:04 xuchaoxin1375 阅读(8) 评论(0) 推荐(0)
摘要: 文章目录 AGP&Gradlecom.android.tools.build.gradle:AGP对Gradle version的要求: distributionUrl AGP&Gradle 官方介绍 您可以通过find in path 来搜索到其所在位置: com.android.tools.bu 阅读全文
posted @ 2021-06-03 23:37 xuchaoxin1375 阅读(118) 评论(0) 推荐(0)
摘要: 文章目录 get the information you want to know from the "logcat" view:(what cause the exception/error occer,and where the code has problems:)to fast locate 阅读全文
posted @ 2021-06-03 20:15 xuchaoxin1375 阅读(16) 评论(0) 推荐(0)
摘要: 文章目录 abstract abstract git everything up-to-date 指示信息表示您的本地 Git 仓库与指定的远程仓库分支完全同步,也就是说,您试图推送(push)的任何更改都已经存在于远程仓库中,没有任何新的提交等待同步。这通常发生于以下几种情况: 您尚未提交本地更改 阅读全文
posted @ 2021-06-03 19:34 xuchaoxin1375 阅读(70) 评论(0) 推荐(0)
摘要: 文章目录 从github上快速迁移到gitee上此时的gitee上的仓库和本地仓库绑定:绑定情况检查 删除多余的remote仓库跟踪 从github上快速迁移到gitee上 gitee 提供了一键导入功能: 此时的gitee上的仓库和本地仓库绑定: git remote add <origin re 阅读全文
posted @ 2021-06-03 19:29 xuchaoxin1375 阅读(40) 评论(0) 推荐(0)
摘要: 文章目录 overviewversion1:version2: overview 测试可运行于python 3.9+ 正则匹配规则根据具体的网站源码可以适当调整 版本2采用beautifulSoup来代替正则表达式,但请注意修改文件保存路径调整 version1: # -*- coding: utf 阅读全文
posted @ 2021-06-02 21:21 xuchaoxin1375 阅读(10) 评论(0) 推荐(0)
摘要: 如果本地开着代理服务,那么可能导致python的网络相关的操作失败 您可以检查代理服务然后更改配置/直接关闭后继续尝试一下 我的案例 在练习爬取网页爬取图片的时候,采用Beautiful Soup方式获取, 在使用request.get(url)时遇到了该错误. # -*- coding: utf- 阅读全文
posted @ 2021-06-02 21:16 xuchaoxin1375 阅读(13) 评论(0) 推荐(0)