Skip to content

Commit 4287b71

Browse files
committed
update README.md
1 parent c63df16 commit 4287b71

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

README.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LeetCode 💖 Swift,攻克[数据结构](#数据结构)与[算法](#算法)。
77

88
数据结构是为算法服务的
99

10-
* 数组([题解](#数组) | [笔记](./Array/README.md)
10+
* [数组](#数组) [`📔`](./Array/README.md)
1111
* [字符串](#字符串)
1212
* [链表](#链表)
1313
* [](#栈)
@@ -40,23 +40,25 @@ LeetCode 💖 Swift,攻克[数据结构](#数据结构)与[算法](#算法)。
4040

4141
### 字符串
4242

43-
| 标题 | 标签 | 描述 | 题解 |
44-
| :----------------------------------------------------------: | :-------------: | ---------------------------------------------------- | :---------------------------: |
45-
| 67.[ 二进制求和](https://leetcode-cn.com/problems/add-binary/) | `字符串` `数学` | 给定两个二进制字符串,返回他们的和(用二进制表示)。 | [Swift](./67_AddBinary.swift) |
43+
| 标题 | 标签 | 描述 | 题解 |
44+
| :----------------------------------------------------------- | :-------------: | ---------------------------------------------------- | :---------------------------: |
45+
| [67. 二进制求和](https://leetcode-cn.com/problems/add-binary/) | `字符串` `数学` | 给定两个二进制字符串,返回他们的和(用二进制表示)。 | [Swift](./67_AddBinary.swift) |
4646

4747

4848

4949
### 链表
5050

51-
| 标题 | 标签 | 描述 | 题解 |
52-
| :----------------------------------------------------------: | :----: | :--------------------------------------------------------: | :-----------------------------------: |
53-
| 24. [两两交换链表中的节点](https://leetcode-cn.com/problems/swap-nodes-in-pairs/) | `链表` | 给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。 | [Swift](./024_SwapNodesInPairs.swift) |
51+
| 标题 | 标签 | 描述 | 题解 |
52+
| :----------------------------------------------------------- | :----: | :--------------------------------------------------------- | :-----------------------------------: |
53+
| [24.两两交换链表中的节点](https://leetcode-cn.com/problems/swap-nodes-in-pairs/) | `链表` | 给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。 | [Swift](./024_SwapNodesInPairs.swift) |
54+
55+
5456

5557
###
5658

57-
| 标题 | 标签 | 描述 | 题解 |
58-
| :----------------------------------------------------------: | :-----------: | ------------------------------------------------------------ | :--------------------------------------------------------: |
59-
| 1003. [检查替换后的词是否有效](https://leetcode-cn.com/problems/check-if-word-is-valid-after-substitutions/) | `字符串` `` | 按给定规则检查替换后的词有效性 | [Swift](./1003_CheckIfWordIsValidAfterSubstitutions.swift) |
59+
| 标题 | 标签 | 描述 | 题解 |
60+
| :----------------------------------------------------------- | :-----------: | ------------------------------------------------------------ | :--------------------------------------------------------: |
61+
| [1003. 检查替换后的词是否有效](https://leetcode-cn.com/problems/check-if-word-is-valid-after-substitutions/) | `字符串` `` | 按给定规则检查替换后的词有效性 | [Swift](./1003_CheckIfWordIsValidAfterSubstitutions.swift) |
6062
| [71. 简化路径](https://leetcode-cn.com/problems/simplify-path/) | `字符串` `` | 以 Unix 风格给出一个文件的**绝对路径**,你需要简化它。或者换句话说,将其转换为规范路径。 | [Swift](./71_SimplifyPath.swift) |
6163

6264
### 队列
@@ -95,7 +97,7 @@ LeetCode 💖 Swift,攻克[数据结构](#数据结构)与[算法](#算法)。
9597
| :--: | :--: | :--: | :--: |
9698
| | | | |
9799

98-
### Trie
100+
### Trie-
99101

100102
| 标题 | 标签 | 描述 | 题解 |
101103
| :--: | :--: | :--: | :--: |
@@ -172,9 +174,9 @@ LeetCode 💖 Swift,攻克[数据结构](#数据结构)与[算法](#算法)。
172174

173175
### 字符串匹配算法
174176

175-
| 标题 | 标签 | 描述 | 题解 |
176-
| :----------------------------------------------------------: | :--------------: | :--------------------------------------------: | :---------------------------------------: |
177-
| 8. [字符串转换整数 (atoi)](https://leetcode-cn.com/problems/string-to-integer-atoi/) | `数学` `字符串` | 实现一个 `atoi` 函数,使其能将字符串转换成整数 | [Swift](./008_StringToInteger.swift) |
178-
| 151. [翻转字符串里的单词](https://leetcode-cn.com/problems/reverse-words-in-a-string/) | `字符串` | 给定一个字符串,逐个翻转字符串中的每个单词。 | [Swift](./151_ReverseWordsInString.swift) |
179-
| 880. [索引处的解码字符串](https://leetcode-cn.com/problems/decoded-string-at-index/) | `字符串``余数` | 给定编码字符串,查找解码字符串中的第 K 个字母 | [Swift](./880_DecodedStringAtIndex.swift) |
177+
| 标题 | 标签 | 描述 | 题解 |
178+
| :----------------------------------------------------------- | :--------------: | :--------------------------------------------- | :---------------------------------------: |
179+
| [8.字符串转换整数 (atoi)](https://leetcode-cn.com/problems/string-to-integer-atoi/) | `数学` `字符串` | 实现一个 `atoi` 函数,使其能将字符串转换成整数 | [Swift](./008_StringToInteger.swift) |
180+
| [151. 翻转字符串里的单词](https://leetcode-cn.com/problems/reverse-words-in-a-string/) | `字符串` | 给定一个字符串,逐个翻转字符串中的每个单词。 | [Swift](./151_ReverseWordsInString.swift) |
181+
| [880. 索引处的解码字符串](https://leetcode-cn.com/problems/decoded-string-at-index/) | `字符串``余数` | 给定编码字符串,查找解码字符串中的第 K 个字母 | [Swift](./880_DecodedStringAtIndex.swift) |
180182

0 commit comments

Comments
 (0)