chore: 添加c和go的目录
This commit is contained in:
parent
a302a3a936
commit
64844c34c7
11
.gitignore
vendored
11
.gitignore
vendored
@ -37,3 +37,14 @@ yarn-error.log
|
||||
npm-debug.log
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# C and Go compiled files
|
||||
*.exe
|
||||
*.out
|
||||
*.o
|
||||
*.a
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.obj
|
||||
*.exe
|
||||
|
@ -35,6 +35,8 @@
|
||||
- `list/`: 链表相关数据结构目录
|
||||
- `tree/`: 树相关数据结构目录
|
||||
- `hash/`: 常用哈希工具函数目录
|
||||
- `c_solutions`: c 语言相关算法实现(详细请看 c_solutions/README.md)
|
||||
- `go_solutions`: go 语言相关算法实现(详细请看 go_solutions/README.md)
|
||||
|
||||
## 排序算法
|
||||
|
||||
|
23
c_solutions/README.md
Normal file
23
c_solutions/README.md
Normal file
@ -0,0 +1,23 @@
|
||||
# c_solutions
|
||||
|
||||
这个文件夹里面的内容用于存放 c 语言相关的代码,是一个独立的文件夹
|
||||
|
||||
## 目录
|
||||
|
||||
- [c_solutions]
|
||||
- [目录](#目录)
|
||||
- [介绍](#介绍)
|
||||
- [目录结构](#目录结构)
|
||||
|
||||
## 介绍
|
||||
|
||||
这个文件夹里面的所有内容都是 c 语言的算法实现。
|
||||
|
||||
## 目录结构
|
||||
|
||||
- `exercises/`: 练习题目
|
||||
- `sort/`: 排序算法相关目录
|
||||
- `leetcode/`: 力扣题解目录,按难度分类
|
||||
- `easy/`: 简单难度题目
|
||||
- `medium/`: 中等难度题目
|
||||
- `hard/`: 困难难度题目
|
0
c_solutions/exercises/.gitkeep
Normal file
0
c_solutions/exercises/.gitkeep
Normal file
0
c_solutions/leetcode/easy/.gitkeep
Normal file
0
c_solutions/leetcode/easy/.gitkeep
Normal file
0
c_solutions/leetcode/hard/.gitkeep
Normal file
0
c_solutions/leetcode/hard/.gitkeep
Normal file
0
c_solutions/leetcode/medium/.gitkeep
Normal file
0
c_solutions/leetcode/medium/.gitkeep
Normal file
0
c_solutions/sort/.gitkeep
Normal file
0
c_solutions/sort/.gitkeep
Normal file
22
go_solutions/README.md
Normal file
22
go_solutions/README.md
Normal file
@ -0,0 +1,22 @@
|
||||
# go_solutions
|
||||
|
||||
这个文件夹里面的内容用于存放 go 语言相关的代码,是一个独立的文件夹
|
||||
|
||||
## 目录
|
||||
|
||||
- [go_solutions]
|
||||
- [目录](#目录)
|
||||
- [介绍](#介绍)
|
||||
- [目录结构](#目录结构)
|
||||
|
||||
## 介绍
|
||||
|
||||
这个文件夹里面的所有内容都是 go 语言的算法实现。
|
||||
|
||||
## 目录结构
|
||||
|
||||
- `sort/`: 排序算法相关目录
|
||||
- `leetcode/`: 力扣题解目录,按难度分类
|
||||
- `easy/`: 简单难度题目
|
||||
- `medium/`: 中等难度题目
|
||||
- `hard/`: 困难难度题目
|
0
go_solutions/leetcode/esay/.gitkeep
Normal file
0
go_solutions/leetcode/esay/.gitkeep
Normal file
0
go_solutions/leetcode/hard/.gitkeep
Normal file
0
go_solutions/leetcode/hard/.gitkeep
Normal file
0
go_solutions/leetcode/medium/.gitkeep
Normal file
0
go_solutions/leetcode/medium/.gitkeep
Normal file
Loading…
x
Reference in New Issue
Block a user