二叉堆 Posted on 2019-02-21 | Post modified: 2020-02-18 Words count in article: 809 | Reading time ≈ 3 任务 实现一个堆,实现插入、寻找最小值、任意修改元素、删除任意元素。 说明 由于堆是完全二叉树(或者说类完全二叉树,关于二叉堆,详情请见:binary heap)。我们使用小标从1开始的数组来表示 ... Read more »
RegExp Posted on 2019-02-21 | Post modified: 2020-03-05 Words count in article: 808 | Reading time ≈ 3 前言 前言:(等等,前言?怎么又是前言?哈哈,每回记录都是有背景的嘛。)写这篇文章是因为想系统的记录一下js中正则表达式的用法,以后忘记了也方便查询。还有一件值得一提的事,和别的地方一样[]括起来的 ... Read more »
LF & CRLF Posted on 2019-02-21 | Post modified: 2020-03-05 Words count in article: 540 | Reading time ≈ 3 在提交代码到远程仓库时,遇见如下问题: 12warning: LF will be replaced by CRLF in knowledge_sharing_doc/2018-07-06-分享总结. ... Read more »
Object和Array类型 Posted on 2019-02-21 | Post modified: 2020-03-05 Words count in article: 1.3k | Reading time ≈ 5 Object类型 创建Object示例的方式: new 使用对象字面量 注:对象字面量定义对象时,不会调用object构造函数。 访问属性方式: 点表示 方括号 注:如不强制要 ... Read more »
JavaScript基础知识 Posted on 2019-02-21 | Post modified: 2020-03-05 Words count in article: 1.3k | Reading time ≈ 4 JavaScript 出现的主要目的:处理服务器端语言负责的一些输入验证操作。 如今的作用:处理复杂的计算和交互 特点:拥有闭包,匿名函数,元编程等特性。 完整的JavaScript实现: 核心(EC ... Read more »
Hexo框架搭建博客记录 Posted on 2019-02-21 | Post modified: 2020-02-18 Words count in article: 733 | Reading time ≈ 2 前言 本文以主题为material讲解。 1. 安装Hexo1npm install -g hexo-cli 2. 创建一个叫blog的网站12// 切入到想放入blog的文件中hexo init b ... Read more »
gitbook的正确打开方式 Posted on 2019-02-21 | Post modified: 2019-04-04 Words count in article: 456 | Reading time ≈ 2 背景:最近在参加了一个学习英语课程(阅读英文原著),内容觉得还不错,想分享给我的小伙伴们,就想着写这个啦。下面我就写写我的安装步骤,还走了蛮多坑的。 1. 卸载掉之前安装的gitbook(如果没有安 ... Read more »
Record of Fore-end Posted on 2019-02-21 | Post modified: 2020-03-05 Words count in article: 587 | Reading time ≈ 3 HTML5 external link: 1234<!--href: URL address--><!--target:where to open the link-->&l ... Read more »