Fork me on GitHub

04 2020 档案

摘要:https://pandas.pydata.org/pandas docs/stable/getting_started/10min.html https://blog.csdn.net/KevinZ5111/article/details/81006852?depth_1 utm_source=d 阅读全文
posted @ 2020-04-28 16:16 WalterJ726 阅读(92) 评论(0) 推荐(0)
摘要:方法1 https://blog.csdn.net/ksws0292756/article/details/79192268 方法2 今天作者在ubuntu服务器上安装Anaconda着实吃了一个血亏。安装成功以后创建虚拟环境总是失败,捣鼓了一天,最后发现是服务器断网了,差点没吐血。后来发现有一台服 阅读全文
posted @ 2020-04-25 09:31 WalterJ726 阅读(754) 评论(0) 推荐(0)
摘要:[TOC] Understand and identify the different types of statements: Normative statements Descriptive general statements Descriptive particular statements 阅读全文
posted @ 2020-04-15 23:00 WalterJ726 阅读(278) 评论(0) 推荐(0)
摘要:[TOC] Essay structure Introduction Body Paragraph 1 Argument Body Paragraph 2 Argument Body Paragraph 3 Refutation Conclusion Introduction 背景描述,话题引入,描 阅读全文
posted @ 2020-04-14 16:53 WalterJ726 阅读(559) 评论(0) 推荐(0)
摘要:https://moedog.org/ https://fullstack.love/about https://www.hcyacg.com/ 里面包含一个好玩的游戏 https://fullstack.love/ https://www.cnblogs.com/ECJTUACM 87328496 阅读全文
posted @ 2020-04-14 16:50 WalterJ726 阅读(124) 评论(0) 推荐(0)
摘要:Acwing845.八数码 这种题有个特征就是状态图 迅速判重 原来3×3的矩阵需要$9!×9!$次检查,每个状态要和$9!$对比 康托展开 每个状态和康托的哈希函数进行判重 时间复杂度: $$ O(n!n!) →O(n!n^2) $$ 用隐时图的概念 1. 把一个字符串变成图中的一个节点 2. 以 阅读全文
posted @ 2020-04-13 22:55 WalterJ726 阅读(184) 评论(0) 推荐(0)
摘要:Kaggle入门: https://zhuanlan.zhihu.com/p/80182734 精读论文: 精读深度学习论文(23) MTCNN https://zhuanlan.zhihu.com/p/38520597 人脸识别入门: https://www.zhihu.com/question/ 阅读全文
posted @ 2020-04-13 11:48 WalterJ726 阅读(107) 评论(0) 推荐(0)
摘要:https://tieba.baidu.com/p/6345884955?red_tag=2564175313 阅读全文
posted @ 2020-04-13 11:43 WalterJ726 阅读(69) 评论(0) 推荐(0)
摘要:vmware虚拟机开机黑屏,无法打开桌面 方法1 https://blog.csdn.net/what_about_us/article/details/81207926 方法2 VMware 虚拟机里连不上网的三种解决方案 https://blog.csdn.net/b_bigstar/artic 阅读全文
posted @ 2020-04-13 11:42 WalterJ726 阅读(1668) 评论(0) 推荐(0)
摘要:[TOC] Either / Or(False dichotomy) Definition: Reduce complex issues to black and white when they could be gray Present only two options as being poss 阅读全文
posted @ 2020-04-13 10:48 WalterJ726 阅读(600) 评论(0) 推荐(0)
摘要:title: BFS tags: ACMer categories: 搜索 thumbnail: https://gss3.bdstatic.com/84oSdTum2Q5BphGlnYG/timg?wapp&quality=80&size=b150_150&subsize=20480&cut_x= 阅读全文
posted @ 2020-04-12 15:26 WalterJ726 阅读(194) 评论(0) 推荐(0)
摘要:哈希表的存储结构 1. 开放寻址法 2. 拉链法 memset是按字节来初始化的,int中有四个字节,初始化成0x3f就是将每个字节都初始化成0x3f,所以每个int就是 0x3f3f3f3f 通过哈希函数h(x) 这个函数可以映射到某个位置 1. x mod 10^5 2. 冲突,两个不一样的数但 阅读全文
posted @ 2020-04-11 23:00 WalterJ726 阅读(161) 评论(0) 推荐(0)
摘要:正数的原码、反码、原码都是一样的 负数的补码计算, 从后向前碰到 0 不管, 遇到第一个 1 以后(这个 1 同样不管), 以后每一位都取反, 最后也就是最高位是符号位, 符号位不变。 例如: 11010100 取补码: 从后向前, 0, 0 , 1 都不管, 倒数第四个字符是 0, 取反 结果: 阅读全文
posted @ 2020-04-09 14:42 WalterJ726 阅读(176) 评论(0) 推荐(0)
摘要:[TOC] Day1 is nothing more than As its most basic definition, education is nothing more than the teaching of ideas. 就最基本的定义来讲,教育无非就是思想的传授。 familiarize 阅读全文
posted @ 2020-04-08 16:20 WalterJ726 阅读(394) 评论(0) 推荐(0)
摘要:线性代数及其应用(第3版)是lay的话,参看下面的评论(非转载,我原创) 不错的书,在美国属于知名的教学工作者,搞教学很有一套,虽然算不上厉害的数学家。 老外的教材,特别是美国的,一般为了清楚地讲明白问题,并加以引申,达到深入浅出的目的,因此页数很多,颇有大部头的感觉。 此书也不例外,而且另有特点: 阅读全文
posted @ 2020-04-07 15:25 WalterJ726 阅读(10185) 评论(0) 推荐(0)
摘要:黑泽明在做副导演时,导演是山本先生,也是领他学会电影的老师。 “山本先生让我写的头一个剧本,是根据藤成吉的原作改编的《水野十郎左卫门》。其中有一场戏,是水野祥白鞘组的伙伴们讲江户城门旁边公告牌上的法令。 我按照原作,把这部分写成水野先读了那公告牌上的法令,然后对他们伙伴们说了这件事。 山本先生看了剧 阅读全文
posted @ 2020-04-07 15:22 WalterJ726 阅读(184) 评论(0) 推荐(1)
摘要:Java123的1 7章 [TOC] .class文件其实是字节码 然后交由jvm来编译 Java基础 JavaSE Java platform standard edition 平台标准版 JavaEE enterprise edition 平台企业版 JavaME micro edition 平 阅读全文
posted @ 2020-04-03 22:24 WalterJ726 阅读(202) 评论(0) 推荐(0)
摘要:转载自:http://blog.csdn.net/anlidengshiwei/article/details/42264301 https://www.cnblogs.com/TTTTT/p/6387699.html JAVA自学之路 一:学会选择 为了就业,不少同学参加各种各样的培训。 决心做软 阅读全文
posted @ 2020-04-02 19:16 WalterJ726 阅读(184) 评论(0) 推荐(0)
摘要:生活 草料公众号: https://cli.im/weixin 图片上传: https://sm.ms/ 电影下载: https://www.dytt.com/ 分享一些电子书网站,以后可以不求人。 鸠摩搜索:https://www.jiumodiary.com/ 淘链客:http://www.to 阅读全文
posted @ 2020-04-02 19:15 WalterJ726 阅读(1733) 评论(0) 推荐(0)