Skip to content

Commit

Permalink
feat(docs): 更新readme文档,新增一些文章
Browse files Browse the repository at this point in the history
  • Loading branch information
142vip.cn committed Oct 29, 2023
1 parent 1f9f6ac commit 6cc6fc7
Show file tree
Hide file tree
Showing 16 changed files with 687 additions and 1,256 deletions.
156 changes: 70 additions & 86 deletions CHANGELOG.md

Large diffs are not rendered by default.

458 changes: 174 additions & 284 deletions README.md

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions artalk.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

## 接入Artalk评论系统


```bash

# 为 Artalk 创建一个目录
Expand All @@ -25,5 +24,3 @@ docker run -d \
artalk/artalk-go

```


18 changes: 4 additions & 14 deletions code/algorithm/front-end-ts/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@
- 刷题平台: [牛客网](https://www.nowcoder.com/ta/front-end)
- 语言版本:JavaScript



### 入门


- dom 节点查找
- 根据包名,在指定空间中创建对象
- 斐波那契数列
Expand Down Expand Up @@ -40,7 +37,6 @@
- 判断是否包含数字
- 判断是否以元音字母结尾


### 简单

- 获取字符串的长度
Expand All @@ -55,13 +51,11 @@
- 二次封装函数
- 二进制转换
- 二进制转换
- 属性遍历
- 检查重复字符串
- 属性遍历
- 检查重复字符串
- 获取指定字符串
- 判断是否符合指定格式



### 中等

- 修改 this 指向
Expand All @@ -71,12 +65,11 @@
- 将字符串转换为驼峰格式
- 加粗文字
- 移除数组中的元素
- 查找重复元素
- 查找重复元素
- 计时器
- 流程控制
- 使用闭包
- 判断是否符合 USD 格式

- 判断是否符合 USD 格式

### 较难

Expand All @@ -85,9 +78,6 @@
- 设置文字颜色
- 模块



### 困难

在牛客网题库——前端大挑战中暂时没有标记为`困难`的题目,个人觉得按照常用的场景,把前面的几个分类刷完就ok了,没事多刷刷呗

18 changes: 4 additions & 14 deletions code/algorithm/front-end/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@
- 刷题平台: [牛客网](https://www.nowcoder.com/ta/front-end)
- 语言版本:JavaScript



### 入门


- dom 节点查找
- 根据包名,在指定空间中创建对象
- 斐波那契数列
Expand Down Expand Up @@ -40,7 +37,6 @@
- 判断是否包含数字
- 判断是否以元音字母结尾


### 简单

- 获取字符串的长度
Expand All @@ -55,13 +51,11 @@
- 二次封装函数
- 二进制转换
- 二进制转换
- 属性遍历
- 检查重复字符串
- 属性遍历
- 检查重复字符串
- 获取指定字符串
- 判断是否符合指定格式



### 中等

- 修改 this 指向
Expand All @@ -71,12 +65,11 @@
- 将字符串转换为驼峰格式
- 加粗文字
- 移除数组中的元素
- 查找重复元素
- 查找重复元素
- 计时器
- 流程控制
- 使用闭包
- 判断是否符合 USD 格式

- 判断是否符合 USD 格式

### 较难

Expand All @@ -85,9 +78,6 @@
- 设置文字颜色
- 模块



### 困难

在牛客网题库——前端大挑战中暂时没有标记为`困难`的题目,个人觉得按照常用的场景,把前面的几个分类刷完就ok了,没事多刷刷呗

27 changes: 6 additions & 21 deletions code/algorithm/剑指/Readme.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@


## 剑指Offer算法

> 刷题平台:牛客网
> 语言版本:JavaScript
### 数组和矩阵

- [ ] [【简单】数组中重复的数字](./数组和矩阵/duplicate.md)
- [ ] [【中等】二维数组中的查找](./数组和矩阵/find.md)
- [ ] [【较难】替换空格](./数组和矩阵/replaceSpace.md)
- [ ] [【较难】顺时针打印矩阵](./数组和矩阵/printMatrix.md)
- [ ] [【简单】第一个只出现一次的字符位置](./数组和矩阵/firstNotRepeatingChar.md)

- [ ] [【简单】数组中重复的数字](./数组和矩阵/duplicate.md)
- [ ] [【中等】二维数组中的查找](./数组和矩阵/find.md)
- [ ] [【较难】替换空格](./数组和矩阵/replaceSpace.md)
- [ ] [【较难】顺时针打印矩阵](./数组和矩阵/printMatrix.md)
- [ ] [【简单】第一个只出现一次的字符位置](./数组和矩阵/firstNotRepeatingChar.md)

### 栈队列堆

Expand All @@ -24,17 +22,13 @@
- [ ] [【较难】包含min函数的栈](./栈队列堆/GetMinInJSStack.md)
- 栈的压入、弹出序列



### 双指针

- [ ] [【中等】和为S的两个数字](./双指针/FindNumbersWithSum.md)
- [ ] [【中等】和为S的连续正数序列](./双指针/FindContinuousSequence.md)
- [ ] [【中等】左旋转字符串](./双指针/LeftRotateString.md)
- [ ] [【较难】翻转单词顺序列](./双指针/ReverseSentence.md)



### 链表

- [ ] [【简单】合并两个排序的链表](./链表/Merge.md)
Expand All @@ -47,8 +41,6 @@
- 链表中环的入口结点[暂时没思路]
- 【较难】复杂链表的复制[暂时没有思路]



###

- [ ] [【中等】重建二叉树](./树/reConstructBinaryTree.md)
Expand All @@ -67,33 +59,28 @@
- 平衡二叉树
- 树中两个节点的最低公共祖先


### 综合类型

#### 贪心思想

- 剪绳子
- [ ] [【LeetCode题目】股票的最大利润](./贪心思想/maxProfit.md)


#### 二分查找

- [ ] [【简单】旋转数组的最小数字](./二分查找/minNumberInRotateArray.md)
- [ ] [【中等】数字在排序数组中出现的次数](./二分查找/GetNumberOfK.md)


#### 分治

- [ ] [【中等】数值的整数次方](./分治/Power.md)


#### 搜索

- 矩阵中的路径 有难度
- 机器人的运动范围
- 字符串的排列


#### 排列

- [ ] [【中等】调整数组顺序使奇数位于偶数前面](./排列/reOrderArray.md)
Expand All @@ -110,8 +97,6 @@
- [ ] [【中等】跳台阶 非递归,要么跳一阶,要么跳两阶](./动态规划/jumpFloor.md)
- [ ] [【较难】丑数](./动态规划/GetUglyNumber_Solution.md)



#### 数学问题

- [ ] [【简单】数组中出现次数超过一半的数字](./数学/moreThanHalfNum.md)
Expand All @@ -127,4 +112,4 @@

- [ ] [【简单】不用加减乘除做加法](./其他相关/add.js)
- [ ] [【中等】扑克牌顺子](./其他相关/isContinuous.js)
- [ ] [【较难】把字符串转换成整数](./其他相关/strToInt.js)
- [ ] [【较难】把字符串转换成整数](./其他相关/strToInt.js)

0 comments on commit 6cc6fc7

Please sign in to comment.